🚚 [bootsier] Extiende Bootstrap sin cambiar core
This commit is contained in:
parent
313b4762bc
commit
f6b76caf8d
103 changed files with 158 additions and 3 deletions
27
packages/pagetop-bootsier/static/scss/bootstrap-5.3.3/_transitions.scss
vendored
Normal file
27
packages/pagetop-bootsier/static/scss/bootstrap-5.3.3/_transitions.scss
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
.fade {
|
||||
@include transition($transition-fade);
|
||||
|
||||
&:not(.show) {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
// scss-docs-start collapse-classes
|
||||
.collapse {
|
||||
&:not(.show) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.collapsing {
|
||||
height: 0;
|
||||
overflow: hidden;
|
||||
@include transition($transition-collapse);
|
||||
|
||||
&.collapse-horizontal {
|
||||
width: 0;
|
||||
height: auto;
|
||||
@include transition($transition-collapse-width);
|
||||
}
|
||||
}
|
||||
// scss-docs-end collapse-classes
|
||||
Loading…
Add table
Add a link
Reference in a new issue