🐛 Fix Uppercase on add token button (#7314)

This commit is contained in:
Eva Marco 2025-09-16 12:05:55 +02:00 committed by GitHub
parent b56f237780
commit 90a80c4b63
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,10 +4,10 @@
//
// Copyright (c) KALEIDOS INC
@use "../ds/typography.scss" as t;
@import "refactor/common-refactor.scss";
.title-bar {
@include headlineSmallTypography;
display: flex;
align-items: center;
justify-content: space-between;
@ -31,13 +31,14 @@
}
.title {
@include t.use-typography("headline-small");
color: var(--title-color);
text-transform: uppercase;
}
.title-only {
color: var(--title-color);
@include t.use-typography("headline-small");
--title-bar-title-margin: #{$s-8};
color: var(--title-color);
margin-inline-start: var(--title-bar-title-margin);
}