mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-14 10:15:46 +00:00

- bundle js using parcel - add markdown editor, html editor, dropdown and tooltip features using third-party packages - integrate optimized inline svg icons from RemixIcon using svgo and a php helper - add scripts in package.json to bundle icons, images, css and js - update tailwind config to add purgecss lookups and typography plugin - refactor views to add missing pages in user journey - update admin's holy grail layout using css grid
22 lines
320 B
CSS
22 lines
320 B
CSS
.holy-grail-grid {
|
|
@apply grid;
|
|
grid-template: auto 1fr auto / auto 1fr auto;
|
|
|
|
& .holy-grail-header {
|
|
grid-column: 1 / 4;
|
|
}
|
|
|
|
& .holy-grail-sidenav {
|
|
grid-column: 1 / 2;
|
|
grid-row: 2 / 4;
|
|
}
|
|
|
|
& .holy-grail-main {
|
|
grid-column: 2 / 4;
|
|
}
|
|
|
|
& .holy-grail-footer {
|
|
grid-column: 2 / 4;
|
|
}
|
|
}
|