Added scss variables

This commit is contained in:
Giuseppe
2018-08-31 19:05:07 +02:00
parent 6bd7883069
commit c6ce420873
5 changed files with 6 additions and 6 deletions

View File

@@ -10,7 +10,7 @@
} }
.ds-base-drop-zone p { .ds-base-drop-zone p {
min-height: 42px; min-height: $drop-zone-area-height;
} }
.ds-document-drop-zone { .ds-document-drop-zone {

View File

@@ -2,7 +2,7 @@
.scrollable-menu { .scrollable-menu {
height: auto; height: auto;
max-height: 200px; max-height: $dropdown-menu-max-height;
overflow-x: hidden; overflow-x: hidden;
} }

View File

@@ -1,11 +1,10 @@
@import '../../../../styles/variables'; @import '../../../../styles/variables';
:host /deep/ .card { :host /deep/ .card {
margin-bottom: 0.5rem; margin-bottom: $border-radius * 2;
} }
.section-focus { .section-focus {
// box-shadow: $btn-focus-box-shadow; border-radius: $border-radius;
border-radius: 0.25rem;
box-shadow: $btn-focus-box-shadow; box-shadow: $btn-focus-box-shadow;
} }

View File

@@ -2,7 +2,7 @@
.sticky-buttons { .sticky-buttons {
position: sticky; position: sticky;
top: 72px; top: $dropdown-item-padding-x * 3;
z-index: $submission-footer-z-index; z-index: $submission-footer-z-index;
background-color: rgba($white, .97); background-color: rgba($white, .97);
} }

View File

@@ -4,6 +4,7 @@ $button-height: $input-btn-padding-y * 2 + $input-btn-line-height + calculateRem
$card-height-percentage:98%; $card-height-percentage:98%;
$card-thumbnail-height:240px; $card-thumbnail-height:240px;
$dropdown-menu-max-height: 200px; $dropdown-menu-max-height: 200px;
$drop-zone-area-height: 42px;
$drop-zone-area-z-index: 1025; $drop-zone-area-z-index: 1025;
$drop-zone-area-inner-z-index: 1021; $drop-zone-area-inner-z-index: 1021;
$login-logo-height:72px; $login-logo-height:72px;