Replace Sass variables with custom properties on _font-weights.pcss (#10554)
* Replace `$font-normal` and `$font-semi-bold` Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * Replace `font-weight: 600` with the custom property Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * Replace the existing variables Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com> --------- Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com>
This commit is contained in:
@@ -114,7 +114,7 @@ limitations under the License.
|
||||
|
||||
> span {
|
||||
color: $primary-content;
|
||||
font-weight: 600;
|
||||
font-weight: var(--font-semi-bold);
|
||||
}
|
||||
|
||||
> p {
|
||||
@@ -277,7 +277,7 @@ limitations under the License.
|
||||
|
||||
input {
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
font-weight: var(--font-semi-bold);
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
@@ -429,7 +429,7 @@ limitations under the License.
|
||||
|
||||
.mx_InviteDialog_tile_nameStack_name {
|
||||
font-size: $font-15px;
|
||||
font-weight: $font-semi-bold;
|
||||
font-weight: var(--font-semi-bold);
|
||||
color: $primary-content;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user