Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

Commit

Permalink
[MM-27972] Make colours default instead of user set colours for start…
Browse files Browse the repository at this point in the history
… trial dialogue in system console (#6239)

* make coours default instead of user set colours

* use variable for white

* REVERT THIS WHEN READY TO MERGE!

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
  • Loading branch information
hahmadia and mattermod committed Aug 31, 2020
1 parent b6d1332 commit a277788
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@import 'utils/variables';

.FeatureDiscovery {
background: var(--center-channel-bg);
background: $white;
box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.08);
border-radius: 8px;
padding: 20px;
Expand Down Expand Up @@ -49,8 +49,8 @@
font-size: 16px;
font-weight: 400;
border-radius: 4px;
background: var(--button-bg);
color: var(--button-color);
background: $primary-color;
color: $white;
&:focus, &:active, &:focus:active {
outline: none;
border-color: transparent;
Expand All @@ -65,8 +65,8 @@
color: var(--center-channel-color-56);
}
&.btn-secondary {
background: var(--center-channel-bg);
border: 1px solid var(--button-bg);
color: var(--button-bg);
background: $white;
border: 1px solid $primary-color;
color: $primary-color;
}
}

0 comments on commit a277788

Please sign in to comment.