Skip to content
Snippets Groups Projects
Commit 66c7cbfe authored by Pierre Ecarlat's avatar Pierre Ecarlat
Browse files

Merge branch 'fix/ui/mobile-structure-details' into 'dev'

fix(ui) Width of structure details for mobile

See merge request !752
parents bc3c7e9d ab313e9b
No related branches found
No related tags found
2 merge requests!783V3.0.0,!752fix(ui) Width of structure details for mobile
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
position: fixed; position: fixed;
z-index: $structure-details-z-index; z-index: $structure-details-z-index;
height: 100%; height: 100%;
width: 100%;
h1 { h1 {
@include font-bold-24; @include font-bold-24;
...@@ -37,6 +38,10 @@ ...@@ -37,6 +38,10 @@
width: 600px; width: 600px;
box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.1); box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.1);
background-color: $white; background-color: $white;
@media (max-width: 600px) {
width: 100%;
}
} }
// Default section styles // Default section styles
...@@ -77,6 +82,12 @@ section.actions { ...@@ -77,6 +82,12 @@ section.actions {
flex-direction: row; flex-direction: row;
justify-content: space-around; justify-content: space-around;
overflow-y: auto; overflow-y: auto;
@media (max-width: 600px) {
flex-wrap: wrap;
row-gap: 16px;
}
.clickableDiv { .clickableDiv {
text-align: center; text-align: center;
max-width: 65px; max-width: 65px;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment