parent
b5f639d7de
commit
ceb457de44
@ -1,14 +1,20 @@
|
||||
.App__Footer,
|
||||
.App__Footer__Pagination {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.App__Footer {
|
||||
padding: 1rem;
|
||||
background-color: var(--color-darkest);
|
||||
justify-content: center;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
|
||||
.App__Footer__Pagination {
|
||||
.App__Footer__Area {
|
||||
display: flex;
|
||||
column-gap: 0.5rem;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.App__Footer__Area--Pagination {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.App__Footer__Area--Actions {
|
||||
justify-content: flex-end;
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
.c-button {
|
||||
padding: 0.5rem;
|
||||
background-color: var(--color-dark);
|
||||
color: var(--color-light);
|
||||
transition: background-color 0.25s, color 0.25s;
|
||||
}
|
||||
|
||||
.c-button:hover {
|
||||
background-color: var(--color-primary);
|
||||
color: var(--color-lightest);
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
import style from './c-button.css' assert { type: 'css' };
|
||||
|
||||
export default {
|
||||
'props': {
|
||||
label: undefined
|
||||
},
|
||||
'data': () => ({
|
||||
style
|
||||
}),
|
||||
'template': `
|
||||
<button class="c-button">{{ label }}</button>
|
||||
`
|
||||
};
|
Loading…
Reference in new issue