fix fab layout bug

This commit is contained in:
rubikscraft 2022-09-03 16:41:35 +02:00
parent bfbc6fc8e3
commit 0813ed0cbc
No known key found for this signature in database
GPG key ID: 1463EBE9200A5CD4
2 changed files with 13 additions and 3 deletions

View file

@ -1,2 +1,12 @@
// Include bootstrap-grid.scss from node_modules
@use '../node_modules/bootstrap/scss/bootstrap-grid.scss';
@use '../node_modules/bootstrap/scss/bootstrap-grid.scss' with (
$grid-breakpoints: (
xs: 0,
sm: 576px,
md: 768px,
lg: 992px,
xl: 1200px,
xxl: 1400px,
xxxl: 1600px,
)
);

View file

@ -10,7 +10,7 @@
bottom: 2rem;
z-index: 8;
@include bs.media-breakpoint-down(xxl) {
@include bs.media-breakpoint-down(xxxl) {
right: 4rem;
}
@ -22,7 +22,7 @@
bottom: 4rem;
}
@include bs.media-breakpoint-up(xxl) {
@include bs.media-breakpoint-up(xxxl) {
transform: translateX(3rem);
}
}