Browse Source

Fixes links bar layout when small

main
Eric Amodio 2 years ago
parent
commit
89ff809720
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      src/webviews/apps/home/home.scss

+ 8
- 0
src/webviews/apps/home/home.scss View File

@ -93,6 +93,14 @@ p {
padding: 0;
white-space: nowrap;
}
@media screen and (max-width: 450px) {
grid-template-columns: repeat(2, auto);
}
@media screen and (max-width: 350px) {
grid-template-columns: 1fr;
}
}
vscode-button {

Loading…
Cancel
Save