|
|
@@ -78,11 +78,15 @@ main {
|
|
|
}
|
|
|
.content .left {
|
|
|
display: flex;
|
|
|
- width: 20%;
|
|
|
flex-direction: column;
|
|
|
align-items: center;
|
|
|
}
|
|
|
|
|
|
+.content .left,.right {
|
|
|
+ flex-grow: 1;
|
|
|
+ min-width: 17%;
|
|
|
+}
|
|
|
+
|
|
|
.content .center {
|
|
|
flex-grow: 1;
|
|
|
}
|
|
|
@@ -98,22 +102,18 @@ main {
|
|
|
flex-direction: column;
|
|
|
align-items: center;
|
|
|
gap: 1.5rem;
|
|
|
- margin-bottom: 1rem;
|
|
|
}
|
|
|
.content .center .segment {
|
|
|
margin-bottom: 0.5rem;
|
|
|
+ mat-divider {margin-bottom: 0.5rem;}
|
|
|
}
|
|
|
|
|
|
-.content .center .dashitems {
|
|
|
- display: flex;
|
|
|
- flex-wrap: wrap;
|
|
|
+.content .center .segment .dashitems {
|
|
|
+ display: grid;
|
|
|
+ grid-template-columns: 33% 33% 33%;
|
|
|
gap: 0.5rem;
|
|
|
}
|
|
|
|
|
|
-.content .right {
|
|
|
- width: 20%;
|
|
|
-}
|
|
|
-
|
|
|
.divider {
|
|
|
width: 1px;
|
|
|
background: var(--red-to-pink-to-purple-vertical-gradient);
|
|
|
@@ -218,10 +218,20 @@ main {
|
|
|
width: 100%;
|
|
|
}
|
|
|
|
|
|
+ .content .center .segment .dashitems {
|
|
|
+ grid-template-columns: 100%;
|
|
|
+ }
|
|
|
+
|
|
|
.divider {
|
|
|
height: 1px;
|
|
|
width: 100%;
|
|
|
background: var(--red-to-pink-to-purple-horizontal-gradient);
|
|
|
margin-block: 1.5rem;
|
|
|
}
|
|
|
+}
|
|
|
+
|
|
|
+@media screen and (pointer: none), (pointer: coarse) and (orientation=landscape) {
|
|
|
+ .content .center .segment .dashitems {
|
|
|
+ grid-template-columns: 50% 50%;
|
|
|
+ }
|
|
|
}
|