@appartmint/mint 0.10.30 → 0.10.34
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 +5 -7
- 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/_cards.scss +1 -1
- package/src/scss/imports/global/_text.scss +0 -4
- package/src/scss/imports/global/_themes.scss +3 -2
package/dist/css/mint.css
CHANGED
|
@@ -397,13 +397,13 @@ p .mint-pill, p .mint-btn {
|
|
|
397
397
|
.mint-card .mint-title:only-child {
|
|
398
398
|
height: 100%;
|
|
399
399
|
}
|
|
400
|
-
.mint-card .mint-title > .mint-image, .mint-card .mint-title > mint-image {
|
|
400
|
+
.mint-card .mint-title > .mint-image, .mint-card .mint-title > mint-image > .mint-image {
|
|
401
401
|
width: 100%;
|
|
402
402
|
height: 100%;
|
|
403
403
|
max-width: 4rem;
|
|
404
404
|
max-height: 4rem;
|
|
405
405
|
}
|
|
406
|
-
.mint-card .mint-title > .mint-image img, .mint-card .mint-title > mint-image img {
|
|
406
|
+
.mint-card .mint-title > .mint-image img, .mint-card .mint-title > mint-image > .mint-image img {
|
|
407
407
|
display: block;
|
|
408
408
|
width: 100%;
|
|
409
409
|
height: 100%;
|
|
@@ -1619,9 +1619,6 @@ p, .mint-p {
|
|
|
1619
1619
|
.mint-upper {
|
|
1620
1620
|
text-transform: uppercase;
|
|
1621
1621
|
}
|
|
1622
|
-
.mint-upper::before, .mint-upper::after {
|
|
1623
|
-
content: " ";
|
|
1624
|
-
}
|
|
1625
1622
|
|
|
1626
1623
|
:root {
|
|
1627
1624
|
--mint-bitcoin: #FF9900;
|
|
@@ -1763,8 +1760,9 @@ a .fa-instagram {
|
|
|
1763
1760
|
a .fa-instagram::after {
|
|
1764
1761
|
content: "\f16d";
|
|
1765
1762
|
position: absolute;
|
|
1766
|
-
top:
|
|
1767
|
-
left:
|
|
1763
|
+
top: 50%;
|
|
1764
|
+
left: 50%;
|
|
1765
|
+
transform: translate(-50%, -50%);
|
|
1768
1766
|
opacity: 0;
|
|
1769
1767
|
transition: opacity var(--mint-delay-default);
|
|
1770
1768
|
color: var(--mint-instagram-0);
|