global.scss in Hostinger Tools 3.0.38, at vue-frontend/src/scss/global.scss
| 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 | } |