@appscode/design-system 1.0.43-alpha.22 → 1.0.43-alpha.221

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (134) hide show
  1. package/base/utilities/_all.scss +7 -0
  2. package/base/utilities/_customize-bulma.scss +191 -0
  3. package/base/utilities/_default.scss +286 -126
  4. package/base/utilities/_derived-variables.scss +6 -1
  5. package/base/utilities/_grid.scss +29 -0
  6. package/base/utilities/_initial-variables.scss +27 -17
  7. package/base/utilities/_mixin.scss +1 -17
  8. package/base/utilities/_typography.scss +18 -14
  9. package/base/utilities/dark-theme.scss +9 -145
  10. package/components/_ac-accordion.scss +14 -5
  11. package/components/_ac-alert-box.scss +41 -7
  12. package/components/_ac-card.scss +48 -10
  13. package/components/_ac-code-highlight.scss +5 -1
  14. package/components/_ac-content-layout.scss +2 -2
  15. package/components/_ac-drag.scss +2 -0
  16. package/components/_ac-input.scss +64 -23
  17. package/components/_ac-modal.scss +1 -1
  18. package/components/_ac-multi-select.scss +247 -9
  19. package/components/_ac-options.scss +24 -9
  20. package/components/_ac-select-box.scss +13 -3
  21. package/components/_ac-table.scss +15 -5
  22. package/components/_ac-tabs.scss +46 -5
  23. package/components/_ac-tags.scss +85 -0
  24. package/components/_ac-terminal.scss +270 -0
  25. package/components/_all.scss +28 -0
  26. package/components/_app-drawer.scss +2 -2
  27. package/components/_breadcumb.scss +2 -0
  28. package/components/_buttons.scss +50 -37
  29. package/components/_card-body-wrapper.scss +2 -2
  30. package/components/_dashboard-header.scss +32 -0
  31. package/components/_direct-deploy.scss +69 -0
  32. package/components/_go-to-top.scss +1 -1
  33. package/components/_graph.scss +45 -0
  34. package/components/_image-upload.scss +5 -3
  35. package/components/_left-sidebar-menu.scss +121 -69
  36. package/components/_monaco-editor.scss +1 -1
  37. package/components/_navbar.scss +170 -10
  38. package/components/_overview-info.scss +3 -3
  39. package/components/_pagination.scss +8 -0
  40. package/components/_payment-card.scss +10 -1
  41. package/components/_preview-modal.scss +18 -5
  42. package/components/_pricing-table.scss +1 -1
  43. package/components/_progress-bar.scss +4 -4
  44. package/components/_subscription-card.scss +11 -4
  45. package/components/_table-of-content.scss +1 -1
  46. package/components/_tfa.scss +69 -0
  47. package/components/_transitions.scss +261 -0
  48. package/components/_wizard.scss +16 -3
  49. package/components/bbum/_all.scss +9 -0
  50. package/components/bbum/_card-team.scss +1 -1
  51. package/components/bbum/_information-center.scss +15 -1
  52. package/components/bbum/_sign-up-notification.scss +1 -1
  53. package/components/bbum/_single-post-preview.scss +2 -2
  54. package/components/bbum/_user-profile.scss +2 -3
  55. package/components/ui-builder/_ui-builder.scss +76 -1
  56. package/components/ui-builder/_vue-open-api.scss +104 -0
  57. package/layouts/_all.scss +2 -0
  58. package/layouts/_code-preview.scss +5 -2
  59. package/main.scss +6 -54
  60. package/package.json +4 -7
  61. package/plugins/caching.ts +243 -0
  62. package/plugins/theme.js +4 -0
  63. package/plugins/time-convert.js +49 -0
  64. package/plugins/vue-toaster.js +3 -0
  65. package/vue-components/v2/banner/Banner.vue +2 -2
  66. package/vue-components/v2/breadcrumbs/Breadcrumb.vue +97 -0
  67. package/vue-components/v2/button/Button.vue +5 -0
  68. package/vue-components/v2/button/DownloadBtn.vue +45 -0
  69. package/vue-components/v2/card/Card.vue +1 -0
  70. package/vue-components/v2/card/PaymentCards.vue +11 -2
  71. package/vue-components/v2/content/ContentTable.vue +12 -7
  72. package/vue-components/v2/editor/Editor.vue +43 -24
  73. package/vue-components/v2/editor/FilteredFileEditor.vue +189 -0
  74. package/vue-components/v2/editor/MonacoEditor.vue +125 -0
  75. package/vue-components/v2/editor/ResourceKeyValueEditor.vue +209 -0
  76. package/vue-components/v2/form-fields/Input.vue +1 -1
  77. package/vue-components/v2/loaders/ResourceLoader.vue +101 -0
  78. package/vue-components/v2/loaders/SidebarLoader.vue +43 -0
  79. package/vue-components/v2/modal/Modal.vue +38 -4
  80. package/vue-components/v2/modals/DeleteConfirmationModal.vue +79 -0
  81. package/vue-components/v2/modals/JsonShowModal.vue +12 -2
  82. package/vue-components/v2/navbar/Appdrawer.vue +10 -9
  83. package/vue-components/v2/navbar/ThemeMode.vue +50 -44
  84. package/vue-components/v2/navbar/User.vue +229 -17
  85. package/vue-components/v2/notification/Notification.vue +101 -0
  86. package/vue-components/v2/notification/NotificationItem.vue +44 -0
  87. package/vue-components/v2/pagination/Pagination.vue +16 -3
  88. package/vue-components/v2/preloader/Preloader.vue +5 -5
  89. package/vue-components/v2/sidebar/ClusterSwitcher.vue +126 -0
  90. package/vue-components/v2/sidebar/SidebarItem.vue +23 -1
  91. package/vue-components/v2/sidebar/SidebarItemWithDropDown.vue +19 -20
  92. package/vue-components/v2/tab/TabItem.vue +1 -1
  93. package/vue-components/v2/table/Table.vue +44 -8
  94. package/vue-components/v2/table/TableRow.vue +12 -2
  95. package/vue-components/v2/table/table-cell/CellValue.vue +33 -4
  96. package/vue-components/v2/table/table-cell/GenericCell.vue +56 -0
  97. package/vue-components/v2/table/table-cell/ObjectCell.vue +4 -1
  98. package/vue-components/v2/tabs/EditorTabs.vue +1 -1
  99. package/vue-components/v3/button/Button.vue +6 -1
  100. package/vue-components/v3/content/ContentHeader.vue +2 -1
  101. package/vue-components/v3/content/ContentTable.vue +20 -2
  102. package/vue-components/v3/editor/Editor.vue +42 -33
  103. package/vue-components/v3/editor/FilteredFileEditor.vue +186 -0
  104. package/vue-components/v3/editor/MonacoEditor.vue +131 -0
  105. package/vue-components/v3/editor/ResourceKeyValueEditor.vue +125 -0
  106. package/vue-components/v3/form/Form.vue +63 -0
  107. package/vue-components/v3/form-fields/Input.vue +11 -10
  108. package/vue-components/v3/header/HeaderItem.vue +5 -0
  109. package/vue-components/v3/header/HeaderItems.vue +5 -0
  110. package/vue-components/v3/loaders/ResourceLoader.vue +83 -0
  111. package/vue-components/v3/loaders/SidebarLoader.vue +34 -0
  112. package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +92 -0
  113. package/vue-components/v3/modal/Modal.vue +38 -6
  114. package/vue-components/v3/modals/DeleteConfirmationModal.vue +85 -0
  115. package/vue-components/v3/modals/JsonShowModal.vue +25 -16
  116. package/vue-components/v3/modals/LongRunningTasksModal.vue +337 -0
  117. package/vue-components/v3/navbar/Appdrawer.vue +12 -7
  118. package/vue-components/v3/navbar/ThemeMode.vue +49 -47
  119. package/vue-components/v3/navbar/User.vue +242 -18
  120. package/vue-components/v3/notification/Notification.vue +98 -0
  121. package/vue-components/v3/notification/NotificationItem.vue +52 -0
  122. package/vue-components/v3/pagination/Pagination.vue +16 -3
  123. package/vue-components/v3/sidebar/ClusterSwitcher.vue +133 -0
  124. package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +120 -0
  125. package/vue-components/v3/tab/TabItem.vue +1 -1
  126. package/vue-components/v3/table/MultiInfoTable.vue +143 -0
  127. package/vue-components/v3/table/Table.vue +47 -13
  128. package/vue-components/v3/table/TableContainer.vue +34 -0
  129. package/vue-components/v3/table/TableRow.vue +64 -3
  130. package/vue-components/v3/table/table-cell/CellValue.vue +28 -3
  131. package/vue-components/v3/table/table-cell/GenericCell.vue +75 -0
  132. package/vue-components/v3/table/table-cell/ObjectCell.vue +7 -2
  133. package/vue-components/v3/tabs/EditorTabs.vue +1 -1
  134. package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +148 -0
@@ -12,13 +12,13 @@
12
12
 
13
13
  /* Handle */
14
14
  &::-webkit-scrollbar-thumb {
15
- background-color: $ac-gray-light;
15
+ background-color: $ac-white-light;
16
16
  border-radius: 10px;
17
17
  }
18
18
 
19
19
  /* Handle on hover */
20
20
  &::-webkit-scrollbar-thumb:hover {
21
- background-color: $ac-gray-light;
21
+ background-color: $ac-white-light;
22
22
  }
23
23
  }
24
24
  }
@@ -137,7 +137,9 @@
137
137
  }
138
138
 
139
139
  tr {
140
- cursor: pointer;
140
+ &.is-link {
141
+ cursor: pointer;
142
+ }
141
143
  border-bottom: 1px solid var(--ac-white-light);
142
144
 
143
145
  td {
@@ -259,7 +261,7 @@
259
261
  }
260
262
  }
261
263
 
262
- &.ac-bordered {
264
+ &.ac-label-texted {
263
265
  thead {
264
266
  tr {
265
267
  th {
@@ -326,7 +328,7 @@
326
328
  }
327
329
 
328
330
  &:checked + label::after {
329
- border-color: #fafafa;
331
+ border-color: $ac-white-lighter;
330
332
  }
331
333
  }
332
334
  }
@@ -416,6 +418,14 @@
416
418
  color: $ac-primary;
417
419
  }
418
420
 
421
+ // table inner shadow
422
+ .table-inner-shadow {
423
+ border-radius: 0px;
424
+ background: $ac-white-lighter;
425
+ box-shadow: inset 5px 5px 10px #e3e6e9,
426
+ inset -5px -5px 10px #ffffff;
427
+ }
428
+
419
429
  // GENERAL TABLE END
420
430
 
421
431
  /****************************************
@@ -6,14 +6,14 @@
6
6
 
7
7
  &.is-line {
8
8
  ul {
9
- border-bottom-color: $ac-white-light;
9
+ // border-bottom-color: $ac-white-light;
10
10
 
11
11
  li {
12
12
  &.is-active {
13
13
  a {
14
14
  font-weight: 500;
15
15
  border-bottom-color: $ac-primary;
16
- border-color: $ac-primary !important;
16
+ border-bottom: 2px solid $ac-primary !important;
17
17
  border-width: 2px;
18
18
  }
19
19
  }
@@ -23,6 +23,7 @@
23
23
  font-weight: 400;
24
24
  color: $ac-color-heading;
25
25
  font-size: $font-size-small;
26
+ border-bottom: none;
26
27
  padding: 6px 20px;
27
28
 
28
29
  &:hover {
@@ -105,7 +106,7 @@
105
106
  li {
106
107
  &.is-active {
107
108
  a {
108
- background-color: #f5f7f9;
109
+ background-color: $ac-white-light;
109
110
  }
110
111
  }
111
112
 
@@ -120,7 +121,7 @@
120
121
 
121
122
  &.is-toggle {
122
123
  ul {
123
- border: 1px solid $ac-border;
124
+ border: 1px solid $ac-label-text;
124
125
  border-radius: 4px;
125
126
  padding: 4px;
126
127
  flex-grow: inherit;
@@ -152,6 +153,19 @@
152
153
  }
153
154
  }
154
155
  }
156
+
157
+ &.kubedb-ui-tabs {
158
+ ul {
159
+ border-bottom: none;
160
+ li {
161
+ &.is-active {
162
+ a {
163
+ border-bottom: 3px solid $ac-primary !important;
164
+ }
165
+ }
166
+ }
167
+ }
168
+ }
155
169
  }
156
170
  }
157
171
 
@@ -181,7 +195,7 @@
181
195
 
182
196
  &.is-borderless {
183
197
  border: 1px solid transparent;
184
- background-color: #f5f7f9;
198
+ background-color: $ac-white-light;
185
199
  border-radius: 4px 4px 4px 4px;
186
200
  }
187
201
  }
@@ -228,6 +242,33 @@
228
242
  background: $ac-white;
229
243
  }
230
244
  }
245
+
246
+ // dark theme
247
+ .is-dark-theme {
248
+ .tabs {
249
+ &.is-toggle {
250
+ a {
251
+ &:hover {
252
+ background-color: $dark-bg;
253
+ }
254
+ }
255
+ }
256
+ a {
257
+ border-bottom: 1px solid $ac-white-lighter;
258
+ color: $ac-full-white;
259
+ }
260
+ &.ac-tabs.is-line {
261
+ ul {
262
+ li.is-active {
263
+ a {
264
+ color: $ac-color-text;
265
+ }
266
+ }
267
+ }
268
+ }
269
+ }
270
+ }
271
+
231
272
  /****************************************
232
273
  Responsive Classes
233
274
  *****************************************/
@@ -1,3 +1,85 @@
1
+ .tag:not(body) {
2
+ background-color: $ac-white-light;
3
+ font-size: 10px;
4
+ height: 18px;
5
+ font-weight: 500;
6
+ line-height: 1;
7
+ letter-spacing: 0px;
8
+ color: $ac-color-heading;
9
+ &.is-outlined {
10
+ border: 1px solid;
11
+ background-color: transparent;
12
+ }
13
+
14
+ a {
15
+ &:hover {
16
+ color: $ac-color-text;
17
+ }
18
+ }
19
+
20
+ &.is-available {
21
+ background-color: #27b064;
22
+ color: $ac-white;
23
+ }
24
+
25
+ &.is-success {
26
+ background-color: $ac-green;
27
+ color: $ac-white;
28
+
29
+ &.is-light {
30
+ background-color: rgba(39, 176, 100, 0.2);
31
+ color: $ac-green;
32
+ }
33
+ }
34
+
35
+ &.is-primary {
36
+ background-color: $ac-primary;
37
+ color: $ac-white;
38
+
39
+ &.is-light {
40
+ background-color: rgba(25, 113, 189, 0.2);
41
+ color: $ac-primary;
42
+ }
43
+ }
44
+
45
+ &.is-gray {
46
+ background-color: #e5e9f2;
47
+ color: $ac-gray-darker;
48
+ }
49
+
50
+ &.is-warning {
51
+ background-color: $ac-warning;
52
+ color: $ac-white;
53
+
54
+ &.is-light {
55
+ background-color: #ffd58b42;
56
+ color: #c88b21;
57
+ }
58
+ }
59
+
60
+ &.is-danger {
61
+ background-color: $ac-red;
62
+ color: $ac-white !important;
63
+
64
+ &.is-light {
65
+ background-color: rgba(234, 61, 47, 0.2);
66
+ color: $ac-red !important;
67
+ }
68
+ }
69
+ }
70
+
71
+ .tags {
72
+ .icon {
73
+ margin-bottom: 0.5rem;
74
+ }
75
+
76
+ .tag {
77
+ a {
78
+ font-weight: 500;
79
+ }
80
+ }
81
+ }
82
+
1
83
  .has-tags {
2
84
  display: flex;
3
85
  align-items: center;
@@ -27,5 +109,8 @@
27
109
  &.is-danger {
28
110
  @include ac-tags($ac-danger);
29
111
  }
112
+ &.is-dark {
113
+ @include ac-tags($ac-gray-dark);
114
+ }
30
115
  }
31
116
  }
@@ -0,0 +1,270 @@
1
+ // terminal scss start
2
+ .ac-terminal {
3
+ width: 100%;
4
+
5
+ .terminal-body {
6
+ font-family: "Inconsolata", monospace;
7
+ background-color: var(--dark-bg-light);
8
+ height: 100%;
9
+ color: $ac-white;
10
+
11
+ strong {
12
+ color: $ac-white;
13
+ }
14
+ }
15
+ }
16
+
17
+ .ac-terminal {
18
+ border-top: 1px solid var(--ac-white-light);
19
+ padding: 0;
20
+ position: fixed;
21
+ width: calc(100% - 270px);
22
+ bottom: 0;
23
+ background-color: $ac-white;
24
+ color: $ac-white;
25
+ font-size: 13px;
26
+ height: 360px;
27
+ z-index: 999;
28
+ transition: 0.3s ease-in-out;
29
+ &.is-collapsed {
30
+ height: 40px !important;
31
+ bottom: 0px;
32
+ .terminal-setting,
33
+ .terminal-body {
34
+ opacity: 0;
35
+ visibility: hidden;
36
+ }
37
+ }
38
+ .resize-handler {
39
+ width: 100%;
40
+ position: absolute;
41
+ background: transparent;
42
+ z-index: 9;
43
+ cursor: row-resize;
44
+ top: -15px;
45
+ &:hover {
46
+ border-bottom: 3px solid $ac-white-light;
47
+ }
48
+ }
49
+ .terminal-header {
50
+ border-top: 1px solid $ac-white-lighter;
51
+ box-shadow: 1px -2px 5px 1px rgba(0, 0, 0, 0.08%);
52
+ .tabs {
53
+ padding: 0 20px 0 20px;
54
+ background-color: $ac-white-lighter;
55
+ overflow: inherit;
56
+ height: 40px;
57
+ ul {
58
+ border-bottom: none;
59
+ padding-left: 0;
60
+ max-width: 1340px;
61
+ overflow-x: auto;
62
+ overflow-y: hidden;
63
+ li {
64
+ a {
65
+ margin-bottom: 0 !important;
66
+ }
67
+ }
68
+ &::-webkit-scrollbar {
69
+ border-radius: 50px;
70
+ height: 3px;
71
+ }
72
+
73
+ &::-webkit-scrollbar:hover {
74
+ height: 7px;
75
+ }
76
+
77
+ &::-webkit-scrollbar-thumb {
78
+ background-color: $ac-gray-light;
79
+ border-radius: 50px;
80
+ height: 2px !important;
81
+ }
82
+
83
+ &::-webkit-scrollbar-thumb:hover {
84
+ background-color: $ac-gray-light;
85
+ }
86
+
87
+ &:hover::-webkit-scrollbar-corner {
88
+ height: 40px;
89
+ }
90
+ .is-active {
91
+ box-shadow: none !important;
92
+ margin-right: 0 !important;
93
+ &:after {
94
+ height: 2px;
95
+ }
96
+ a {
97
+ background-color: $ac-white;
98
+ }
99
+ }
100
+ li:not(.is-active) {
101
+ margin-right: -1px;
102
+ border-right: 1px solid $ac-white-lighter;
103
+ }
104
+ li {
105
+ a {
106
+ margin-bottom: 0px;
107
+ font-size: 13px;
108
+ border-radius: 0;
109
+ padding: 5px 10px 5px 20px;
110
+ border: none;
111
+ height: 40px;
112
+ .name-of-tab {
113
+ width: 120px;
114
+ overflow: hidden;
115
+ }
116
+ .terminal-icon {
117
+ img {
118
+ width: 15px;
119
+ margin-right: 10px;
120
+ margin-top: 5px;
121
+ }
122
+ }
123
+
124
+ .button {
125
+ img {
126
+ width: 10px;
127
+ }
128
+ }
129
+ }
130
+ }
131
+ }
132
+ .options-items {
133
+ top: 15px;
134
+ left: 40px;
135
+ .items-inner {
136
+ border: none;
137
+ li {
138
+ border: none;
139
+ border-right: none !important;
140
+ border-bottom: 1px solid $ac-white-lighter;
141
+ width: 100%;
142
+ &:last-child {
143
+ border-bottom: none;
144
+ }
145
+ a {
146
+ font-size: 13px;
147
+ padding: 10px 20px;
148
+ &:hover {
149
+ color: $ac-primary !important;
150
+ }
151
+ }
152
+ }
153
+ }
154
+ }
155
+
156
+ .right-control {
157
+ .button {
158
+ .fa {
159
+ font-size: 20px;
160
+ }
161
+ img {
162
+ width: 11px;
163
+ }
164
+ }
165
+ }
166
+ }
167
+ }
168
+ .terminal-setting {
169
+ background-color: var(--dark-bg);
170
+ padding: 5px 20px;
171
+
172
+ .left-content {
173
+ .ac-select-box-wrapper {
174
+ margin-right: 10px;
175
+ .multi-select-wrapper {
176
+ min-width: 200px;
177
+ }
178
+ .multiselect .multiselect__tags .multiselect__input,
179
+ .multiselect .multiselect__tags .multiselect__single {
180
+ background-color: #3b3030;
181
+ }
182
+ }
183
+ }
184
+
185
+ .right-content {
186
+ .status-message {
187
+ background-color: #666666 !important;
188
+ text-align: center;
189
+ padding: 4px 20px;
190
+ border-radius: 4px;
191
+ color: #ffffff !important;
192
+ text-transform: uppercase;
193
+ &.is-success {
194
+ background-color: #27b064 !important;
195
+ }
196
+ &.is-danger {
197
+ background-color: $ac-red !important;
198
+ }
199
+ }
200
+ }
201
+ }
202
+ .terminal-body {
203
+ p {
204
+ font-family: Fira Code;
205
+ .code-static {
206
+ color: #0ff05c;
207
+ font-weight: 500;
208
+ }
209
+
210
+ .code-input {
211
+ color: #acd9ff;
212
+ }
213
+ }
214
+ }
215
+ .button {
216
+ &.is-transparent {
217
+ &:hover {
218
+ background-color: $ac-white-light;
219
+ }
220
+ }
221
+ }
222
+ .multiselect.multiselect--active {
223
+ .multiselect__tags {
224
+ border: 1px solid $ac-white !important;
225
+ .multiselect__input {
226
+ color: $ac-white !important;
227
+ }
228
+ }
229
+ }
230
+ .multiselect .multiselect__tags {
231
+ background-color: $ac-color-text;
232
+ border: 1px solid $ac-color-value;
233
+ span {
234
+ color: $ac-white;
235
+ }
236
+ }
237
+ }
238
+
239
+ // dark theme start
240
+ .is-dark-theme {
241
+ // ac-terminal
242
+ .ac-terminal {
243
+ .terminal-setting {
244
+ --ac-color-value: var(--dark-bg-light);
245
+
246
+ .left-content .ac-select-box-wrapper .multiselect .multiselect__tags {
247
+ .multiselect__input {
248
+ background-color: var(--dark-bg-light);
249
+ color: var(--ac-white-text);
250
+ }
251
+
252
+ .multiselect__single {
253
+ background-color: var(--dark-bg-light);
254
+ color: var(--ac-white-text);
255
+ }
256
+ }
257
+ }
258
+
259
+ .multiselect {
260
+ .multiselect__tags {
261
+ background-color: transparent;
262
+
263
+ span {
264
+ color: var(--ac-white-text);
265
+ }
266
+ }
267
+ }
268
+ }
269
+ }
270
+ // dark theme end
@@ -0,0 +1,28 @@
1
+ @import "ac-alert-box";
2
+ @import "ac-accordion";
3
+ @import "buttons";
4
+ @import "breadcumb";
5
+ @import "ac-card";
6
+ @import "ac-multi-select";
7
+ @import "ac-code-highlight";
8
+ @import "navbar";
9
+ @import "app-drawer";
10
+ @import "ac-drag";
11
+ @import "left-sidebar-menu";
12
+ @import "ac-input";
13
+ @import "ac-content-layout";
14
+ @import "ac-table";
15
+ @import "graph";
16
+ @import "ac-modal";
17
+ @import "payment-card";
18
+ @import "pagination";
19
+ @import "ac-options";
20
+ @import "image-upload";
21
+ @import "ac-alert-box";
22
+ @import "dashboard-header";
23
+ @import "ac-tags";
24
+ @import "go-to-top";
25
+ @import "ac-toaster/ac-toasted";
26
+ @import "preview-modal";
27
+ @import "wizard";
28
+ @import "bbum/all";
@@ -9,7 +9,7 @@
9
9
  user-select: none;
10
10
 
11
11
  &:hover {
12
- background-color: #bcd8eb;
12
+ background-color: rgba(255, 255, 255, 0.7);
13
13
  cursor: pointer;
14
14
  }
15
15
 
@@ -50,7 +50,7 @@
50
50
  .media-content {
51
51
  .content {
52
52
  p {
53
- color: #fff;
53
+ color: $ac-white;
54
54
  }
55
55
  }
56
56
  }
@@ -7,6 +7,8 @@
7
7
  height: 50px;
8
8
  background-color: $ac-white;
9
9
  z-index: 998;
10
+ display: flex;
11
+ align-items: center;
10
12
  }
11
13
 
12
14
  .breadcrumb {