@appartmint/mint 2.6.5 → 2.6.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/css/mint.css +12 -0
- package/dist/css/mint.css.map +1 -1
- package/dist/css/mint.min.css +1 -1
- package/dist/css/mint.min.css.map +1 -1
- package/package.json +1 -1
- package/src/scss/imports/components/widget/_button.scss +1 -0
- package/src/scss/imports/components/widget/_card.scss +8 -0
- package/src/scss/imports/overrides/_swiper.scss +4 -0
package/dist/css/mint.css
CHANGED
|
@@ -963,6 +963,7 @@
|
|
|
963
963
|
|
|
964
964
|
.mint-btn, :root:root [amplify-button], .mint-select {
|
|
965
965
|
padding: 0.5rem 1.75rem;
|
|
966
|
+
cursor: pointer;
|
|
966
967
|
}
|
|
967
968
|
.mint-btn-icon {
|
|
968
969
|
display: block;
|
|
@@ -1107,6 +1108,12 @@ p .mint-pill, p .mint-btn, :root:root p [amplify-button], p .mint-select {
|
|
|
1107
1108
|
flex-direction: row-reverse;
|
|
1108
1109
|
}
|
|
1109
1110
|
}
|
|
1111
|
+
.mint-card:has(mint-widget-carousel), :root:root [data-amplify-authenticator] [data-amplify-container]:has(mint-widget-carousel) {
|
|
1112
|
+
box-shadow: none;
|
|
1113
|
+
}
|
|
1114
|
+
.mint-card:has(mint-widget-carousel) .mint-content, :root:root [data-amplify-authenticator] [data-amplify-container]:has(mint-widget-carousel) .mint-content, :root:root .mint-card:has(mint-widget-carousel) [data-amplify-authenticator] [data-amplify-container] [data-amplify-router], :root:root [data-amplify-authenticator] [data-amplify-container] .mint-card:has(mint-widget-carousel) [data-amplify-router], :root:root [data-amplify-authenticator] [data-amplify-container]:has(mint-widget-carousel) [data-amplify-router] {
|
|
1115
|
+
box-shadow: 0 0 2rem -0.5rem var(--mint-glow-2);
|
|
1116
|
+
}
|
|
1110
1117
|
.mint-card.mint-center .mint-title, :root:root [data-amplify-authenticator] .mint-center[data-amplify-container] .mint-title {
|
|
1111
1118
|
justify-content: center;
|
|
1112
1119
|
text-align: center;
|
|
@@ -3808,6 +3815,11 @@ thead .fc-scroller {
|
|
|
3808
3815
|
--swiper-navigation-sides-offset: 1rem;
|
|
3809
3816
|
}
|
|
3810
3817
|
}
|
|
3818
|
+
:root .swiper-slide {
|
|
3819
|
+
display: flex;
|
|
3820
|
+
align-items: center;
|
|
3821
|
+
justify-content: center;
|
|
3822
|
+
}
|
|
3811
3823
|
@media (min-width: 480px) {
|
|
3812
3824
|
:root .swiper-slide {
|
|
3813
3825
|
padding: 3rem;
|