mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-03-14 20:52:51 +00:00
Update typography colors and font-size
This commit is contained in:
parent
4061d19541
commit
eeb91f588d
11 changed files with 41 additions and 16 deletions
changelog/entries/1.20.0/feature
enterprise/web-frontend/modules/baserow_enterprise/assets/scss/components
premium/web-frontend/modules/baserow_premium/assets/scss/components
web-frontend/modules/core
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"type": "feature",
|
||||
"message": "Update typography rules",
|
||||
"issue_number": 1918,
|
||||
"bullet_points": [],
|
||||
"created_at": "2023-08-26"
|
||||
}
|
|
@ -5,7 +5,7 @@
|
|||
}
|
||||
|
||||
.crud-table-filters__filter-wrapper-title {
|
||||
font-weight: 700;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.crud-table-filters__filter-value-input {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
.impersonate-warning {
|
||||
padding: 16px;
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
font-weight: 600;
|
||||
color: $white;
|
||||
background-color: $color-warning-500;
|
||||
}
|
||||
|
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
.license-detail__item-name {
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.license-detail__item-description {
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
|
||||
.licenses__item-title {
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
font-weight: 600;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
|
|
|
@ -5,12 +5,12 @@
|
|||
|
||||
.redirect-modal__title {
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.redirect-modal__from-to {
|
||||
font-size: 15px;
|
||||
font-weight: 700;
|
||||
font-weight: 600;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
@extend %ellipsis;
|
||||
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
font-weight: 600;
|
||||
margin-left: 24px;
|
||||
margin-top: 24px;
|
||||
margin-bottom: 24px;
|
||||
|
|
|
@ -212,7 +212,7 @@
|
|||
|
||||
.kanban-view__stacked-by-title {
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
font-weight: 600;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
|
|
|
@ -57,7 +57,7 @@
|
|||
}
|
||||
|
||||
.button--light {
|
||||
@include button-style(transparent, $color-neutral-100, $color-primary-900);
|
||||
@include button-style(transparent, $color-neutral-100, $color-neutral-900);
|
||||
|
||||
&:hover,
|
||||
&:focus,
|
||||
|
|
|
@ -29,34 +29,51 @@ a {
|
|||
p {
|
||||
@extend %first-last-no-margin;
|
||||
|
||||
color: $palette-neutral-1300;
|
||||
color: $palette-neutral-900;
|
||||
line-height: 170%;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
strong {
|
||||
color: $palette-neutral-1200;
|
||||
}
|
||||
|
||||
h1,
|
||||
.heading-1 {
|
||||
@extend %first-last-no-margin;
|
||||
|
||||
font-size: 33px;
|
||||
line-height: 130%;
|
||||
font-size: 24px;
|
||||
line-height: 32px;
|
||||
margin: 30px 0;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
h2,
|
||||
.heading-2 {
|
||||
@extend %first-last-no-margin;
|
||||
|
||||
font-size: 22px;
|
||||
line-height: 130%;
|
||||
font-size: 20px;
|
||||
line-height: 28px;
|
||||
margin: 20px 0;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
h3,
|
||||
.heading-3 {
|
||||
@extend %first-last-no-margin;
|
||||
|
||||
font-size: 14px;
|
||||
line-height: 130%;
|
||||
font-size: 18px;
|
||||
line-height: 24px;
|
||||
margin: 10px 0;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
h4,
|
||||
.heading-4 {
|
||||
@extend %first-last-no-margin;
|
||||
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
margin: 10px 0;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
<h1><h1>Heading 1</h1></h1>
|
||||
<h2><h2>Heading 2</h2></h2>
|
||||
<h3><h3>Heading 3</h3></h3>
|
||||
<h4><h4>Heading 4</h4></h4>
|
||||
</div>
|
||||
<div class="margin-bottom-3">
|
||||
<p>
|
||||
|
|
Loading…
Reference in a new issue