chore: add recent links widget
This commit is contained in:
parent
7443d797a9
commit
56f28f7e3f
22 changed files with 91 additions and 62 deletions
19
src/assets/styles/components/addon-links.css
Normal file
19
src/assets/styles/components/addon-links.css
Normal file
|
@ -0,0 +1,19 @@
|
|||
:root {
|
||||
--grid: repeat(1,minmax(0,1fr));
|
||||
}
|
||||
|
||||
.addon-links__wrapper {
|
||||
display: grid;
|
||||
gap: var(--sizing-sm);
|
||||
grid-template-columns: var(--grid);
|
||||
}
|
||||
|
||||
.addon-links__wrapper h2 {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
:root {
|
||||
--grid: repeat(2,minmax(0,1fr));
|
||||
}
|
||||
}
|
Reference in a new issue