components.scss
5 years ago
layout.scss
5 years ago
notices.scss
5 years ago
utility.scss
5 years ago
layout.scss
47 lines
| 1 | .presto-dashboard { |
| 2 | &__row { |
| 3 | --spacing: 1rem; |
| 4 | --column-count: 2; |
| 5 | |
| 6 | display: flex; |
| 7 | flex-wrap: wrap; |
| 8 | margin: 0 calc(var(--spacing) * -0.5); |
| 9 | align-items: stretch; |
| 10 | justify-content: space-between; |
| 11 | } |
| 12 | |
| 13 | &__item { |
| 14 | flex: 0 1 33.33%; |
| 15 | padding: calc(var(--spacing) / 3); |
| 16 | width: 33.33%; |
| 17 | |
| 18 | > * { |
| 19 | height: 100%; |
| 20 | } |
| 21 | |
| 22 | &.is-large { |
| 23 | flex: 1; |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | &__header { |
| 28 | background: #fff; |
| 29 | padding: 20px; |
| 30 | display: flex; |
| 31 | align-items: center; |
| 32 | justify-content: space-between; |
| 33 | } |
| 34 | &__logo { |
| 35 | max-width: 175px; |
| 36 | } |
| 37 | &__body { |
| 38 | max-width: 800px; |
| 39 | margin-left: auto; |
| 40 | margin-right: auto; |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | // Dashboard Overview Grid |
| 45 | .presto-dashboard { |
| 46 | } |
| 47 |