feature/breadcrumb #2

Merged
HenriqueSantosSantana merged 2 commits from feature/breadcrumb into develop 2022-12-28 14:25:36 +00:00
2 changed files with 12 additions and 10 deletions
Showing only changes of commit f95235f6dc - Show all commits

View File

@ -1,3 +1,5 @@
@use '../../settings/styles/utils/helpers/mixin' as mix;
.list {
display: inline-flex;
align-items: center;
@ -5,12 +7,10 @@
.initial {
img {
width: 16px;
height: 16px;
@include mix.square(16px);
@media screen and (min-width: 2500px) {
width: 31.25px;
height: 31.25px;
@media only screen and (min-width: 2500px) {
@include mix.square(31.25px);
}
}
}
@ -26,12 +26,10 @@
}
.divider {
width: 8px;
height: 8px;
@include mix.square(8px);
@media screen and (min-width: 2500px) {
width: 15.62px;
height: 15.62px;
@media only screen and (min-width: 2500px) {
@include mix.square(15.62px);
}
}

View File

@ -0,0 +1,4 @@
@mixin square($size) {
width: #{$size};
height: #{$size};
}