feat: spruce up design
This commit is contained in:
parent
2614dff452
commit
94e28067f9
51 changed files with 480 additions and 202 deletions
21
src/assets/styles/pages/links.css
Normal file
21
src/assets/styles/pages/links.css
Normal file
|
@ -0,0 +1,21 @@
|
|||
.link-grid {
|
||||
display: grid;
|
||||
gap: var(--sizing-sm);
|
||||
grid-template-columns: repeat(1,minmax(0,1fr));
|
||||
margin-bottom: var(--sizing-base);
|
||||
|
||||
& .link {
|
||||
border: 1px solid var(--gray-light);
|
||||
padding: var(--sizing-xs) var(--sizing-sm) 0;
|
||||
|
||||
& button {
|
||||
margin-right: var(--sizing-xs);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.link-grid {
|
||||
grid-template-columns: repeat(2,minmax(0,1fr));
|
||||
}
|
||||
}
|
Reference in a new issue