Fix layout for custom size

This commit is contained in:
Julia Radzhabova 2022-11-10 11:06:54 +03:00
parent 079cbe4d36
commit a6470bf74e
4 changed files with 15 additions and 4 deletions

View file

@ -100,7 +100,8 @@
} }
.text { .text {
font-size: 14px; //font-size: 14px;
.font-size-huge();
} }
} }
} }

View file

@ -215,6 +215,11 @@
.fontsize(calc(@font-size-base-app + 2px)); // 13px .fontsize(calc(@font-size-base-app + 2px)); // 13px
} }
.font-size-huge {
.fontsize(14px); // 14px
.fontsize(calc(@font-size-base-app + 3px)); // 14px
}
// Skeleton of document // Skeleton of document
#editor-container { #editor-container {

View file

@ -201,14 +201,18 @@
width: auto !important; width: auto !important;
tr { tr {
td { td {
label{
.font-size-normal();
}
padding: 6px 10px; padding: 6px 10px;
&.group-name label { &.group-name label {
font-size: 14px; //font-size: 14px;
.font-size-huge();
.font-weight-bold(); .font-weight-bold();
} }
&.subgroup-name label{ &.subgroup-name label{
.font-size-normal();
.font-weight-bold(); .font-weight-bold();
} }

View file

@ -56,7 +56,8 @@
} }
} }
&.large{ &.large{
font-size: 14px; //font-size: 14px;
.font-size-huge();
} }
.name.not-header { .name.not-header {
font-style: italic; font-style: italic;