mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 21:14:18 +00:00
16 lines
274 B
CSS
16 lines
274 B
CSS
|
.RepositoryViewer {
|
||
|
display: grid;
|
||
|
|
||
|
grid-template-areas:
|
||
|
"b c d"
|
||
|
"b e e"
|
||
|
"b f f"
|
||
|
"b g g";
|
||
|
grid-template-columns: 400px 1fr 1fr;
|
||
|
grid-template-rows: auto auto 1fr auto;
|
||
|
|
||
|
grid-gap: 10px;
|
||
|
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|