@iit/precision-ui 0.8.29 → 0.8.30
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/styles.css +46 -2
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -2024,16 +2024,60 @@ body{
|
|
|
2024
2024
|
.typo_variant_body, a.doc-with-icon, .content ol,
|
|
2025
2025
|
.content ul, .content p {
|
|
2026
2026
|
font-family: "TT Commons";
|
|
2027
|
-
font-size:
|
|
2027
|
+
font-size: 10px;
|
|
2028
2028
|
line-height: 1.25;
|
|
2029
2029
|
letter-spacing: normal;
|
|
2030
2030
|
}
|
|
2031
|
+
@media (min-width: 360px) {
|
|
2032
|
+
.typo_variant_body, a.doc-with-icon, .content ol,
|
|
2033
|
+
.content ul, .content p {
|
|
2034
|
+
font-size: 12px;
|
|
2035
|
+
}
|
|
2036
|
+
}
|
|
2037
|
+
@media (min-width: 768px) {
|
|
2038
|
+
.typo_variant_body, a.doc-with-icon, .content ol,
|
|
2039
|
+
.content ul, .content p {
|
|
2040
|
+
font-size: 16px;
|
|
2041
|
+
}
|
|
2042
|
+
}
|
|
2043
|
+
@media (min-width: 1024px) {
|
|
2044
|
+
.typo_variant_body, a.doc-with-icon, .content ol,
|
|
2045
|
+
.content ul, .content p {
|
|
2046
|
+
font-size: 18px;
|
|
2047
|
+
}
|
|
2048
|
+
}
|
|
2049
|
+
@media (min-width: 1440px) {
|
|
2050
|
+
.typo_variant_body, a.doc-with-icon, .content ol,
|
|
2051
|
+
.content ul, .content p {
|
|
2052
|
+
font-size: 20px;
|
|
2053
|
+
}
|
|
2054
|
+
}
|
|
2031
2055
|
.typo_variant_small-body {
|
|
2032
2056
|
font-family: "TT Commons";
|
|
2033
|
-
font-size:
|
|
2057
|
+
font-size: 9px;
|
|
2034
2058
|
line-height: 1.3;
|
|
2035
2059
|
letter-spacing: normal;
|
|
2036
2060
|
}
|
|
2061
|
+
@media (min-width: 360px) {
|
|
2062
|
+
.typo_variant_small-body {
|
|
2063
|
+
font-size: 10.8px;
|
|
2064
|
+
}
|
|
2065
|
+
}
|
|
2066
|
+
@media (min-width: 768px) {
|
|
2067
|
+
.typo_variant_small-body {
|
|
2068
|
+
font-size: 14.4px;
|
|
2069
|
+
}
|
|
2070
|
+
}
|
|
2071
|
+
@media (min-width: 1024px) {
|
|
2072
|
+
.typo_variant_small-body {
|
|
2073
|
+
font-size: 16.2px;
|
|
2074
|
+
}
|
|
2075
|
+
}
|
|
2076
|
+
@media (min-width: 1440px) {
|
|
2077
|
+
.typo_variant_small-body {
|
|
2078
|
+
font-size: 18px;
|
|
2079
|
+
}
|
|
2080
|
+
}
|
|
2037
2081
|
.typo_variant_caption {
|
|
2038
2082
|
font-family: "TT Commons";
|
|
2039
2083
|
font-size: clamp(12px, 12px + 1.5vw, 16px);
|