Skip to content

Commit 7b709cb

Browse files
author
Yeliazar
committed
updated notifications
1 parent 5eb9879 commit 7b709cb

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

src/pages/Ui/Notifications/Notifications.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@
3939
<h5 class="m-t-1">Notification Types</h5>
4040
<p>Different types of notifications for lots of use cases. Custom classes are also
4141
supported.</p>
42-
<p><b-button variant="info" id="show-info-message" @click="addInfoNotification">Info
42+
<p><b-button variant="info" class="text-white" id="show-info-message" @click="addInfoNotification">Info
4343
Message</b-button></p>
44-
<p><b-button variant="danger" id="show-error-message" @click="addErrorNotification">Error
44+
<p><b-button variant="danger" class="text-white" id="show-error-message" @click="addErrorNotification">Error
4545
Message</b-button></p>
4646
<p><b-button
4747
variant="success" id="show-success-message" @click="addSuccessNotification"

src/styles/_overrides.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,10 +164,12 @@ small {
164164

165165
.btn-secondary {
166166
border-color: $gray-400;
167-
color: $gray-800;
167+
color: $gray-100;
168168
}
169169

170170
.btn-success,
171+
.btn-default,
172+
.btn-gray,
171173
.btn-info,
172174
.btn-warning {
173175
color: $white;

src/styles/_variables.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ $yellow: #EBB834 !default;
5050
$green: #68ca66 !default;
5151
$teal: #26CD5F !default;
5252
$cyan: #17a2b8 !default;
53+
$turquoise: #10CFD0 !default;
5354
$default: #E9ECEF !default;
5455
$inverse: #002B49 !default;
5556
$gray-inverse: #30324C !default;
@@ -59,7 +60,7 @@ $theme-colors: (
5960
primary: $blue,
6061
secondary: $gray-600,
6162
success: $teal,
62-
info: $purple,
63+
info: $turquoise,
6364
warning: $yellow,
6465
danger: $red,
6566
dark: $gray-800,

0 commit comments

Comments
 (0)