mirror of
https://github.com/BradNut/remix-syntax
synced 2025-09-08 17:40:28 +00:00
15 lines
196 B
CSS
15 lines
196 B
CSS
.cols {
|
|
grid-template-columns: 30% 70%;
|
|
display: grid;
|
|
}
|
|
|
|
.playlist {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.show-details {
|
|
position: sticky;
|
|
top: 0;
|
|
overflow-y: scroll;
|
|
height: calc(100vh - 63px);
|
|
}
|