Fixes to SASS
- Changes to sass:math - Mediaqueries not working anymore
This commit is contained in:
parent
5e667371e6
commit
0214054c81
4 changed files with 27 additions and 20 deletions
|
|
@ -1,5 +1,4 @@
|
|||
// Explanation module styles
|
||||
// ------------------------------------------------------------------------------
|
||||
@use "sass:math";
|
||||
|
||||
%expose_after {
|
||||
&::after {
|
||||
|
|
@ -25,8 +24,8 @@
|
|||
background-color: rgba($delta_color, 0.1) !important;
|
||||
}
|
||||
}
|
||||
%exp {
|
||||
}
|
||||
// %exp {
|
||||
// }
|
||||
%exp_hidden {
|
||||
display: none;
|
||||
}
|
||||
|
|
@ -54,8 +53,8 @@
|
|||
}
|
||||
.exp_marker_pop {
|
||||
position: absolute;
|
||||
top: -$size_text_basic / 4 * 3;
|
||||
right: -$size_text_basic / 2;
|
||||
top: math.div(-$size_text_basic, 4) * 3;
|
||||
right: math.div(-$size_text_basic, 2);
|
||||
width: $size_text_basic;
|
||||
height: $size_text_basic;
|
||||
border: $space_tiny solid $color_highlight_basic;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue