|
|
@@ -3,25 +3,24 @@
|
|
|
.dashboard-container {
|
|
|
display: flex;
|
|
|
gap: 1rem;
|
|
|
+ // TODO: Add to center
|
|
|
// margin: auto;
|
|
|
padding: 1.5rem 1.5rem 0 1.5rem;
|
|
|
border: 3px solid red;
|
|
|
+ width: 1280px;
|
|
|
+ height: 840px;
|
|
|
|
|
|
- @include width-xsmall {
|
|
|
- width: 1280px;
|
|
|
- }
|
|
|
@include width-small {
|
|
|
width: 1494px;
|
|
|
}
|
|
|
@include width-medium {
|
|
|
width: 1707px;
|
|
|
}
|
|
|
- @include width-large {
|
|
|
- width: 1920px;
|
|
|
- }
|
|
|
- @include height-xsmall {
|
|
|
- height: 840px;
|
|
|
- }
|
|
|
+
|
|
|
+ // Width large is probably too large
|
|
|
+ // @include width-large {
|
|
|
+ // width: 1920px;
|
|
|
+ // }
|
|
|
@include height-small {
|
|
|
height: 910px;
|
|
|
}
|
|
|
@@ -61,17 +60,47 @@
|
|
|
gap: 1rem;
|
|
|
width: 500px;
|
|
|
|
|
|
- @media (height < 934px) {
|
|
|
- gap: 1.5rem;
|
|
|
+ // @include width-small {
|
|
|
+ // width: 614px;
|
|
|
+ // }
|
|
|
+ @include width-medium {
|
|
|
+ width: 600px;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
ability-panel {
|
|
|
+ z-index: 10000;
|
|
|
+ border: 2px solid purple;
|
|
|
width: 495px;
|
|
|
+ height: 702px;
|
|
|
+
|
|
|
+ @include width-medium {
|
|
|
+ width: 609px;
|
|
|
+ }
|
|
|
+
|
|
|
+ @include height-small {
|
|
|
+ height: 772px;
|
|
|
+ }
|
|
|
+ @include height-medium {
|
|
|
+ height: 839px;
|
|
|
+ }
|
|
|
+ @include height-large {
|
|
|
+ height: 917px;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
-.weapon {
|
|
|
+weapons-container {
|
|
|
+ border: 2px solid green;
|
|
|
width: 100%;
|
|
|
- min-height: 50%;
|
|
|
- max-height: 70%;
|
|
|
+ height: 515px;
|
|
|
+
|
|
|
+ @include height-small {
|
|
|
+ height: 585px;
|
|
|
+ }
|
|
|
+ @include height-medium {
|
|
|
+ height: 652px;
|
|
|
+ }
|
|
|
+ @include height-large {
|
|
|
+ height: 730px;
|
|
|
+ }
|
|
|
}
|