Homepage: remove sidebar border, make sidebar wider (300px instead of

200px)
This commit is contained in:
towards-a-new-leftypol 2024-03-17 16:54:27 -04:00
parent 1f4c94fef1
commit 548c613c12
1 changed files with 3 additions and 6 deletions

View File

@ -10,10 +10,7 @@
.sidebar {
grid-column: 1;
grid-row: 1 / 3;
width: 200px;
border-right-color: gray;
border-right-style: solid;
border-width: 2px;
width: 100%;
margin-right: 15px;
}
@ -33,7 +30,7 @@
body {
display: grid;
grid-template-columns: repeat(auto-fill,minmax(200px, 1fr));
grid-template-columns: repeat(auto-fill,minmax(300px, 1fr));
gap: 20px;
}