mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
46 lines
685 B
CSS
46 lines
685 B
CSS
.code {
|
|
@apply block overflow-auto whitespace-nowrap;
|
|
background: #e0e0e0;
|
|
padding: 6px 8px;
|
|
color: #4c4c4c;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.warning {
|
|
@apply mt-4 flex;
|
|
padding: 10px 16px;
|
|
background: #fad8d7;
|
|
color: #797979;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.warningIcon {
|
|
@apply mr-5 mt-2.5;
|
|
font-size: 26px;
|
|
}
|
|
|
|
.dialog {
|
|
> div {
|
|
max-width: 50vw;
|
|
min-width: calc(45 * var(--unit));
|
|
background-color: white;
|
|
border-radius: 3px;
|
|
}
|
|
}
|
|
|
|
.dialogContent {
|
|
padding: 24px;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.dialogButtons {
|
|
background: #f4f4f4;
|
|
padding: 16px;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
border-radius: 3px;
|
|
|
|
> * {
|
|
margin-left: var(--margin)
|
|
}
|
|
} |