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>
16 lines
416 B
SCSS
16 lines
416 B
SCSS
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
.notice {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: calc(var(--unit) * 2);
|
|
background-color: var(--inputControlBackground);
|
|
border: 1px solid var(--boxShadow);
|
|
color: var(--textColorTertiary);
|
|
border-radius: 4px;
|
|
padding: calc(var(--padding) * 2);
|
|
}
|