1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

perf(UI): increased application border-radius

This commit is contained in:
2021-06-24 21:49:46 +02:00
parent 7cc5e7b67f
commit a0a025e450
12 changed files with 26 additions and 18 deletions

View File

@ -22,6 +22,7 @@ $enum-color: goldenrod;
$unknown-color: gray;
/* Sizes */
$border-radius: 0.3rem;
$titlebar-height: 1.5rem;
$settingbar-width: 3rem;
$explorebar-width: 14rem;

View File

@ -34,6 +34,10 @@ body {
outline: none !important;
}
.no-radius {
border-radius: 0 !important;
}
.no-border {
outline: none !important;
border: none !important;
@ -109,7 +113,7 @@ body {
.modal-container,
.modal-sm .modal-container {
padding: 0;
border-radius: 3px;
border-radius: $border-radius;
.modal-header {
padding: 0.4rem 0.8rem;
@ -117,7 +121,7 @@ body {
display: flex;
justify-content: space-between;
align-items: center;
border-radius: 3px 3px 0 0;
border-radius: $border-radius $border-radius 0 0;
.modal-title {
overflow: hidden;