1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Make all dialogs rounded

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2021-08-22 16:10:07 +03:00 committed by Sebastian Malton
parent 08215c8184
commit c9bf212153
2 changed files with 12 additions and 3 deletions

View File

@ -33,7 +33,8 @@
max-width: 50vw;
min-width: 45 * $unit;
background-color: white;
outline: $unit solid rgba(255, 255, 255, .15);
border-radius: $radius;
line-height: 1.5;
}
.confirm-content {
@ -44,7 +45,7 @@
> .Icon {
margin-left: inherit;
margin-right: $margin;
margin-right: $margin * 2;
color: $colorSoftError;
}
@ -60,9 +61,11 @@
.confirm-buttons {
background: #f4f4f4;
padding: $spacing;
padding: $padding * 2.5;
display: flex;
justify-content: flex-end;
border-bottom-left-radius: $radius;
border-bottom-right-radius: $radius;
> * {
margin-left: $margin

View File

@ -47,6 +47,8 @@
color: white;
background: $dialogHeaderBackground;
padding: var(--wizard-spacing);
border-top-left-radius: $radius;
border-top-right-radius: $radius;
b {
font-weight: $font-weight-normal;
@ -79,6 +81,8 @@
.WizardStep {
background: var(--wizard-step-bgc);
border-bottom-left-radius: $radius;
border-bottom-right-radius: $radius;
> .step-content.scrollable {
@include scrollableContent();
@ -92,6 +96,8 @@
> :last-child {
padding: var(--wizard-spacing);
background: $dialogFooterBackground;
border-bottom-left-radius: $radius;
border-bottom-right-radius: $radius;
.back-btn {
margin-left: auto;