PluginProbe
Hostinger Tools / 3.0.78
Hostinger Tools v3.0.78
3.0.78 3.0.77 3.0.76 3.0.75 3.0.74 3.0.73 3.0.72 3.0.71 3.0.70 3.0.69 3.0.68 3.0.67 3.0.66 1.8.1 1.8.2 1.8.3 1.9.1 1.9.4 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.0.0 2.0.1 All 109 releases
hostinger / vue-frontend / src / scss / global.scss

global.scss in Hostinger Tools 3.0.78, at vue-frontend/src/scss/global.scss

39 lines 609 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @import '@/scss/base/mixins.scss';
2
3 .banner {
4 @include base-card;
5 padding: 16px 24px;
6 margin-bottom: 24px;
7
8 &__heading {
9 display: flex;
10 align-items: center;
11 margin-bottom: 8px;
12 }
13
14 &__heading-icon {
15 margin-right: 8px;
16 color: var(--gray);
17 }
18
19 &__heading-title {
20 margin-bottom: 0px;
21 font-weight: 700;
22 }
23
24 &__body {
25 display: flex;
26 align-items: center;
27 justify-content: space-between;
28 @media (max-width: theme('screens.md')) {
29 flex-wrap: wrap;
30 }
31 }
32
33 &__contents {
34 display: flex;
35 flex-direction: column;
36 text-align: left;
37 }
38 }
39