mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Leave default browser font-size for the html Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Fix preferences helm repos layout Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Adjust usage of rem units Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Adjust namespace select filter option sizes Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Fixing ToBottom btn sizing Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Fixing Remove Cluster dialog sizing Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Fixing catalog sidebar title font-size Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Fix Notice sizing Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Update snapshots Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Update more snapshots Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
49 lines
827 B
SCSS
49 lines
827 B
SCSS
.warning {
|
|
display: flex;
|
|
margin-top: var(--margin);
|
|
padding: calc(var(--padding) * 2) calc(var(--padding) * 3);
|
|
border-radius: 4px;
|
|
align-items: center;
|
|
background: #fad8d7;
|
|
color: #797979;
|
|
}
|
|
|
|
.warningIcon {
|
|
margin-right: calc(var(--margin) * 2.4);
|
|
font-size: 26px;
|
|
}
|
|
|
|
.dialog {
|
|
> div {
|
|
border-radius: 4px;
|
|
background-color: white;
|
|
max-width: 600px;
|
|
min-width: calc(45 * var(--unit));
|
|
}
|
|
|
|
b {
|
|
word-break: break-all;
|
|
}
|
|
}
|
|
|
|
.dialogContent {
|
|
padding: calc(var(--padding) * 2) calc(var(--padding) * 3);
|
|
}
|
|
|
|
.dialogButtons {
|
|
display: flex;
|
|
border-radius: 4px;
|
|
justify-content: flex-end;
|
|
padding: calc(var(--padding) * 2);
|
|
background: #f4f4f4;
|
|
|
|
> * {
|
|
margin-left: var(--margin)
|
|
}
|
|
}
|
|
|
|
.hr {
|
|
margin-top: calc(var(--margin) * 3);
|
|
height: 1px;
|
|
background: #dfdfdf80;
|
|
} |