blob: ec7d2a18f3f3c0ca90cf0540005c5ab5b2e747c0 [file] [log] [blame]
Michael Landoefa037d2017-02-19 12:57:33 +02001.sdc-app {
Einav Weiss Keidar1801b242018-08-13 16:19:46 +03002 height: 100%;
Michael Landoefa037d2017-02-19 12:57:33 +02003}
4.flex {
Einav Weiss Keidar1801b242018-08-13 16:19:46 +03005 display: flex;
6 flex: 1;
Michael Landoefa037d2017-02-19 12:57:33 +02007}
8
9.flex-column {
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030010 @extend .flex;
11 flex-direction: column;
Michael Landoefa037d2017-02-19 12:57:33 +020012}
13
14.content-area {
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030015 padding: 30px 60px 70px 60px;
16 overflow-y: auto;
17 overflow-x: hidden;
18 height: 100%;
19 &.no-padding-content-area {
20 padding: 0;
21 }
Michael Landoefa037d2017-02-19 12:57:33 +020022}
AviZi280f8012017-06-09 02:39:56 +030023
talig8e9c0652017-12-20 14:30:43 +020024.page-title {
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030025 @extend .heading-1;
26 @extend .text-uppercase !optional;
27 margin-bottom: 20px;
28 color: $blue;
29}
30.sdc-modal {
Maciej Malewski9fd77512021-01-13 14:47:38 +010031 .sdc-modal__wrapper.sdc-modal-type-error {
32 align-self: baseline;
33 }
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030034 .sdc-modal__wrapper.sdc-modal-type-custom {
35 .sdc-modal__content {
36 padding: 0;
37 .entitlement-pools-modal,
38 .license-key-groups-modal,
39 .manage-permissions-page {
40 .validation-form-content {
41 overflow-y: visible;
42 }
43 }
44 .validation-form-content {
45 padding: 20px 40px;
46 overflow-y: auto;
47 .no-bottom-margin {
48 margin-bottom: 0;
49 .customized-date-picker {
50 margin-bottom: 0;
51 }
52 }
53 }
54 }
55 }
talig8e9c0652017-12-20 14:30:43 +020056}