Skip to content

Commit

Permalink
fix: updated responsive layout
Browse files Browse the repository at this point in the history
  • Loading branch information
akshatmittal61 committed Nov 20, 2023
1 parent 42f18e7 commit b491e49
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions styles/config/_responsive.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
height: 100%;
}

@include responsive(bigDesktop) {
@include responsive(extra-large-desktop) {
.row {
& .col-xlg {
@for $i from 1 through 100 {
Expand All @@ -30,7 +30,7 @@
}
}

@include responsive(desktop) {
@include responsive(large-desktop) {
.row {
& .col-lg {
@for $i from 1 through 100 {
Expand All @@ -42,7 +42,7 @@
}
}

@include responsive(tablet) {
@include responsive(desktop) {
.row {
& .col-md {
@for $i from 1 through 100 {
Expand All @@ -54,7 +54,7 @@
}
}

@include responsive(phone) {
@include responsive(tablet) {
.row {
& .col-sm {
@for $i from 1 through 100 {
Expand All @@ -65,3 +65,15 @@
}
}
}

@include responsive(phone) {
.row {
& .col-xsm {
@for $i from 1 through 100 {
&-#{$i} {
width: #{$i}#{"%"};
}
}
}
}
}

0 comments on commit b491e49

Please sign in to comment.