fix(styles/fonts/project): add fonts + change styles + edit default project name
This commit is contained in:
@@ -8,25 +8,18 @@
|
||||
@mixin element-invisible($enforce: true) {
|
||||
$important: if($enforce, "!important", null);
|
||||
|
||||
position: absolute #{$important};
|
||||
width: 1px #{$important};
|
||||
height: 1px #{$important};
|
||||
padding: 0 #{$important};
|
||||
overflow: hidden #{$important};
|
||||
clip: rect(0, 0, 0, 0) #{$important};
|
||||
white-space: nowrap #{$important};
|
||||
border: 0 #{$important};
|
||||
max-height: 0 #{$important};
|
||||
opacity: 0 #{$important};
|
||||
visibility: hidden #{$important};
|
||||
transition: $default-transition;
|
||||
}
|
||||
|
||||
@mixin element-invisible-off($enforce: true) {
|
||||
@mixin element-invisible-off($value-visibility: 100px, $enforce: true) {
|
||||
$important: if($enforce, "!important", null);
|
||||
|
||||
position: static #{$important};
|
||||
width: auto #{$important};
|
||||
height: auto #{$important};
|
||||
overflow: visible #{$important};
|
||||
clip: auto #{$important};
|
||||
white-space: normal #{$important};
|
||||
max-height: #{$value-visibility} #{$important};
|
||||
opacity: 1 #{$important};
|
||||
visibility: visible #{$important};
|
||||
}
|
||||
|
||||
@mixin css-triangle($triangle-size, $triangle-color, $triangle-direction) {
|
||||
|
Reference in New Issue
Block a user