Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added desktop directions (right to left, left to right, top to bottom, bottom to top) #88

Merged
merged 4 commits into from
Mar 26, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added LTR, RTL, TTB, BTT directions to desktop breakpoints
aletail committed Mar 19, 2024
commit 00a88b538d199bcb1f4e01000e9256165e4a1dfd
15 changes: 15 additions & 0 deletions sass/base/layout/_layout.scss
Original file line number Diff line number Diff line change
@@ -46,6 +46,21 @@
.#{$label}-show{
display: inherit;
}
/* Flex Container Direction */
.flex-container{
&.#{$label}-ltr{
flex-direction: row;
}
&.#{$label}-rtl{
flex-direction: row-reverse;
}
&.#{$label}-ttb{
flex-direction: column;
}
&.#{$label}-btt{
flex-direction: column-reverse;
}
}
}
}
/*