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 3b88f9eba3
commit 08afcdb42c
1 changed files with 3 additions and 6 deletions

View File

@ -10,11 +10,8 @@
.sidebar {
grid-column: 1;
grid-row: 1 / 3;
width: 200px;
border-right-color: gray;
border-right-style: solid;
border-width: 2px;
margin-right: 15px;
width: 100%;
margin-right: 15px;
}
.introduction {
@ -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;
}