@rhavenside/baseline-ui 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/baseline.css +38 -16
- package/dist/baseline.css.map +1 -1
- package/dist/baseline.min.css +1 -1
- package/package.json +1 -1
- package/src/components/_modal.scss +50 -14
- package/src/icons/_icons.scss +9 -8
package/dist/baseline.css
CHANGED
|
@@ -3684,18 +3684,22 @@ textarea {
|
|
|
3684
3684
|
overflow-x: hidden;
|
|
3685
3685
|
overflow-y: auto;
|
|
3686
3686
|
outline: 0;
|
|
3687
|
+
display: flex;
|
|
3688
|
+
align-items: center;
|
|
3689
|
+
justify-content: center;
|
|
3690
|
+
padding: var(--spacing-md);
|
|
3687
3691
|
}
|
|
3688
3692
|
|
|
3689
3693
|
.bl-modal-dialog {
|
|
3690
3694
|
position: relative;
|
|
3691
|
-
width:
|
|
3692
|
-
|
|
3695
|
+
width: 100%;
|
|
3696
|
+
max-width: 500px;
|
|
3697
|
+
margin: 0;
|
|
3693
3698
|
pointer-events: none;
|
|
3694
3699
|
}
|
|
3695
3700
|
@media (min-width: 576px) {
|
|
3696
3701
|
.bl-modal-dialog {
|
|
3697
3702
|
max-width: 500px;
|
|
3698
|
-
margin: var(--spacing-xl) auto;
|
|
3699
3703
|
}
|
|
3700
3704
|
}
|
|
3701
3705
|
@media (min-width: 768px) {
|
|
@@ -3787,27 +3791,52 @@ textarea {
|
|
|
3787
3791
|
}
|
|
3788
3792
|
|
|
3789
3793
|
@media (min-width: 576px) {
|
|
3790
|
-
.bl-modal-sm {
|
|
3794
|
+
.bl-modal-sm .bl-modal-dialog {
|
|
3791
3795
|
max-width: 300px;
|
|
3792
3796
|
}
|
|
3793
3797
|
}
|
|
3794
3798
|
|
|
3795
3799
|
@media (min-width: 1024px) {
|
|
3796
|
-
.bl-modal-lg {
|
|
3800
|
+
.bl-modal-lg .bl-modal-dialog {
|
|
3797
3801
|
max-width: 1000px;
|
|
3798
3802
|
}
|
|
3799
3803
|
}
|
|
3800
3804
|
|
|
3801
3805
|
@media (min-width: 1024px) {
|
|
3802
|
-
.bl-modal-xl {
|
|
3806
|
+
.bl-modal-xl .bl-modal-dialog {
|
|
3803
3807
|
max-width: 1200px;
|
|
3804
3808
|
}
|
|
3805
3809
|
}
|
|
3806
3810
|
|
|
3807
|
-
.bl-modal-
|
|
3808
|
-
|
|
3811
|
+
.bl-modal-top {
|
|
3812
|
+
align-items: flex-start;
|
|
3813
|
+
padding-top: var(--spacing-xl);
|
|
3814
|
+
}
|
|
3815
|
+
|
|
3816
|
+
.bl-modal-bottom {
|
|
3817
|
+
align-items: flex-end;
|
|
3818
|
+
padding-bottom: var(--spacing-xl);
|
|
3819
|
+
}
|
|
3820
|
+
|
|
3821
|
+
.bl-modal-left {
|
|
3822
|
+
justify-content: flex-start;
|
|
3823
|
+
padding-left: var(--spacing-xl);
|
|
3824
|
+
}
|
|
3825
|
+
.bl-modal-left .bl-modal-dialog {
|
|
3826
|
+
margin-right: auto;
|
|
3827
|
+
}
|
|
3828
|
+
|
|
3829
|
+
.bl-modal-right {
|
|
3830
|
+
justify-content: flex-end;
|
|
3831
|
+
padding-right: var(--spacing-xl);
|
|
3832
|
+
}
|
|
3833
|
+
.bl-modal-right .bl-modal-dialog {
|
|
3834
|
+
margin-left: auto;
|
|
3835
|
+
}
|
|
3836
|
+
|
|
3837
|
+
.bl-modal-centered {
|
|
3809
3838
|
align-items: center;
|
|
3810
|
-
|
|
3839
|
+
justify-content: center;
|
|
3811
3840
|
}
|
|
3812
3841
|
|
|
3813
3842
|
.bl-dropdown {
|
|
@@ -4510,13 +4539,6 @@ textarea {
|
|
|
4510
4539
|
border-width: var(--border-width-base);
|
|
4511
4540
|
}
|
|
4512
4541
|
|
|
4513
|
-
@font-face {
|
|
4514
|
-
font-family: "Baseline Icons";
|
|
4515
|
-
src: url("../fonts/baseline-icons.woff2") format("woff2"), url("../fonts/baseline-icons.woff") format("woff");
|
|
4516
|
-
font-weight: normal;
|
|
4517
|
-
font-style: normal;
|
|
4518
|
-
font-display: swap;
|
|
4519
|
-
}
|
|
4520
4542
|
.bl-icon {
|
|
4521
4543
|
display: inline-block;
|
|
4522
4544
|
font-family: "Baseline Icons";
|