1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/components/delete-cluster-dialog/delete-cluster-dialog.module.scss
Roman 2d279a6b99
using both sass + modules + tailwind (optional) (#4604)
using sass + css-modules + tailwind for styling, part of #3701
2021-12-23 12:29:36 +02:00

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;
}