Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nelyaklyusa committed Oct 30, 2024
1 parent 86131a2 commit 72ca203
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/common/CheckmarkedItem/CheckmarkedItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,16 @@ defineProps({
&__icon-wrap
display: flex
padding: 4px
align-items: center
align-items: flex-start
gap: 10px
border-radius: 50px
box-shadow: $box-shadow-small
background-color: $secondary-light
@media screen and (max-width: 767px)
margin-top: 3px
&.is--icon-hollow
background-color: transparent
border: 1px solid $secondary
Expand Down
20 changes: 20 additions & 0 deletions src/styles/_global.sass
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,26 @@
display: block !important


.is--gt-desktop-lg-show
display: block !important
@include media-lte(desktop-lg)
display: none !important


.is--lt-desktop-lg-show
display: block !important
@include media-gte(desktop-lg)
display: none !important

.is--gt-desktop-show
display: block !important
@include media-lte(desktop)
display: none !important

.is--lt-desktop-show
display: block !important
@include media-gte(desktop)
display: none !important

.is--gt-tablet-show
display: block !important
Expand Down

0 comments on commit 72ca203

Please sign in to comment.