mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-21 16:38:23 +01:00
fix default button text color (#370)
This commit is contained in:
parent
174cf3d39d
commit
b3f7e7a2b9
@ -29,8 +29,8 @@
|
||||
white-space: nowrap;
|
||||
user-select: none;
|
||||
font-size: 14px;
|
||||
|
||||
color: var(--main-text-color);
|
||||
color: var(--button-text-color);
|
||||
font-weight: normal;
|
||||
|
||||
i {
|
||||
fill: var(--main-text-color);
|
||||
@ -38,7 +38,6 @@
|
||||
|
||||
&.primary,
|
||||
&.secondary {
|
||||
color: var(--main-text-color);
|
||||
background: var(--accent-color);
|
||||
|
||||
i {
|
||||
@ -52,7 +51,6 @@
|
||||
|
||||
&.primary.warning {
|
||||
background: #e6ba1e;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
&.primary.ghost {
|
||||
@ -196,4 +194,8 @@
|
||||
.font-weight-500 {
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.font-weight-600 {
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
|
@ -124,8 +124,6 @@
|
||||
button {
|
||||
font-size: 14px;
|
||||
margin-bottom: 28px;
|
||||
color: #000;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
button.disabled-button {
|
||||
|
@ -112,7 +112,9 @@ const TosModal = () => {
|
||||
</div>
|
||||
<footer className="unselectable">
|
||||
<div className="button-wrapper">
|
||||
<Button onClick={acceptTos}>Get Started</Button>
|
||||
<Button className="font-weight-600" onClick={acceptTos}>
|
||||
Get Started
|
||||
</Button>
|
||||
</div>
|
||||
<div className="content-section-text">
|
||||
By continuing, I accept the
|
||||
|
@ -83,9 +83,8 @@
|
||||
|
||||
/* button colors */
|
||||
--button-primary-color: #58c142;
|
||||
--button-secondary-color: rgba(255, 255, 255, 0.1);
|
||||
--button-danger-color: #d43434;
|
||||
--button-focus-border-color: rgba(88, 193, 66, 0.8);
|
||||
--button-text-color: #000000;
|
||||
|
||||
/* form colors */
|
||||
--form-element-border-color: rgba(241, 246, 243, 0.15);
|
||||
|
Loading…
Reference in New Issue
Block a user