Closes #96
This commit is contained in:
parent
44fd2aca03
commit
7623aed34f
3 changed files with 24 additions and 4 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -20,6 +20,16 @@
|
|||
.ecosystem__submodule:not(.active) {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.ecosystem__submodules:first-of-type { // TODO: Figure out how to write this in a way that doesn't override
|
||||
@media (min-resolution: 96dpi) {
|
||||
height: 383px;
|
||||
}
|
||||
|
||||
@media (min-resolution: 192dpi) {
|
||||
height: 378px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.expand-right {
|
||||
|
@ -29,6 +39,16 @@
|
|||
.ecosystem__submodule:not(.active) {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.ecosystem__submodules:last-of-type {
|
||||
@media (min-resolution: 96dpi) {
|
||||
height: 383px;
|
||||
}
|
||||
|
||||
@media (min-resolution: 192dpi) {
|
||||
height: 378px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -259,7 +279,7 @@
|
|||
}
|
||||
|
||||
&:not(.on):not(.active) {
|
||||
color: transparent;
|
||||
color: rgba($black, 0.3);
|
||||
}
|
||||
|
||||
&:not(.active) {
|
||||
|
@ -282,7 +302,7 @@
|
|||
}
|
||||
|
||||
&.active {
|
||||
width: 100%; height: 100%; max-height: 378px;
|
||||
width: 100%; height: 100%;
|
||||
|
||||
border-style: solid;
|
||||
overflow-y: auto;
|
||||
|
|
Loading…
Reference in a new issue