mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
41 lines
554 B
SCSS
41 lines
554 B
SCSS
.warning {
|
|
@apply mt-4 flex py-4 px-6 rounded-md items-center;
|
|
background: #fad8d7;
|
|
color: #797979;
|
|
}
|
|
|
|
.warningIcon {
|
|
@apply mr-5;
|
|
font-size: 26px;
|
|
}
|
|
|
|
.dialog {
|
|
> div {
|
|
@apply rounded-md bg-white;
|
|
max-width: 600px;
|
|
min-width: calc(45 * var(--unit));
|
|
}
|
|
|
|
b {
|
|
word-break: break-all;
|
|
}
|
|
}
|
|
|
|
.dialogContent {
|
|
@apply p-9 leading-9;
|
|
}
|
|
|
|
.dialogButtons {
|
|
@apply flex justify-end p-7 rounded-md;
|
|
background: #f4f4f4;
|
|
|
|
> * {
|
|
margin-left: var(--margin)
|
|
}
|
|
}
|
|
|
|
.hr {
|
|
@apply mt-7;
|
|
height: 1px;
|
|
background: #dfdfdf80;
|
|
} |