define width for column

This commit is contained in:
Late Night Defender 2023-08-03 00:57:42 +07:00
parent 8f665f0bf1
commit a8cddeaf95

View file

@ -65,27 +65,26 @@ body {
.grid-container {
display: grid;
justify-content: center;
grid-template-areas:
'header header header header header'
'left middle middle middle right'
'footer footer footer footer footer';
'left middle right'
}
.left {
grid-area: left;
}
/* Style the middle column */
.middle {
grid-area: middle;
width: 15cm;
}
/* Style the right column */
.right {
grid-area: right;
}
/* Invidious */
.list {
border-radius: 12px 12px 12px 12px;
background-color: rgba(255, 255, 255, 1);