matcha-theme 18.1.37 → 18.1.39
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.
|
@@ -67,46 +67,42 @@
|
|
|
67
67
|
// small 12px caption - regular
|
|
68
68
|
@mixin matcha-reset-typography($config) {
|
|
69
69
|
// Headings
|
|
70
|
+
// precis mesmo de font-family pra tudo isso? não é melhor declarar apenas para o body?
|
|
70
71
|
.h1,
|
|
71
72
|
h1 {
|
|
72
73
|
font-size: px-to-rem(40px);
|
|
73
74
|
font-family: matcha-font-family($config, title);
|
|
74
|
-
font-weight: matcha-font-weight($config, title);
|
|
75
75
|
}
|
|
76
76
|
|
|
77
77
|
.h2,
|
|
78
78
|
h2 {
|
|
79
79
|
font-size: px-to-rem(32px);
|
|
80
80
|
font-family: matcha-font-family($config, body-2);
|
|
81
|
-
font-weight: matcha-font-weight($config, body-2);
|
|
82
81
|
}
|
|
83
82
|
|
|
84
83
|
.h3,
|
|
85
84
|
h3 {
|
|
86
85
|
font-size: px-to-rem(24px);
|
|
87
86
|
font-family: matcha-font-family($config, title);
|
|
88
|
-
font-weight: matcha-font-weight($config, title);
|
|
89
87
|
}
|
|
90
88
|
|
|
91
89
|
.h4,
|
|
92
90
|
h4 {
|
|
93
91
|
font-size: px-to-rem(20px);
|
|
94
92
|
font-family: matcha-font-family($config, title);
|
|
95
|
-
font-weight: matcha-font-weight($config, title);
|
|
96
93
|
}
|
|
97
94
|
|
|
98
95
|
.h5,
|
|
99
96
|
h5 {
|
|
100
97
|
font-size: px-to-rem(16px);
|
|
101
98
|
font-family: matcha-font-family($config, title);
|
|
102
|
-
font-weight: matcha-font-weight($config, title);
|
|
103
99
|
}
|
|
104
100
|
|
|
105
101
|
.h6,
|
|
106
102
|
h6 {
|
|
107
103
|
font-size: px-to-rem(12px);
|
|
108
104
|
font-family: matcha-font-family($config, subheading-2);
|
|
109
|
-
font-weight: matcha-font-weight($config, subheading-2);
|
|
105
|
+
// font-weight: matcha-font-weight($config, subheading-2);
|
|
110
106
|
}
|
|
111
107
|
|
|
112
108
|
.text-bold,
|
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
|
|
113
113
|
&[disabled] {
|
|
114
114
|
background-color: map-get($background, disabled);
|
|
115
|
-
color:
|
|
115
|
+
color: #b5bdc3;
|
|
116
116
|
border-color: map-get($foreground, disabled);
|
|
117
117
|
}
|
|
118
118
|
|
|
@@ -120,12 +120,16 @@
|
|
|
120
120
|
border: 0px solid currentColor;
|
|
121
121
|
box-shadow: 0px 0px 0px 0px inset;
|
|
122
122
|
background: transparent !important;
|
|
123
|
+
color: map-get($foreground, base);
|
|
124
|
+
border-color: map-get($foreground, base);
|
|
123
125
|
}
|
|
124
126
|
|
|
125
127
|
&-outline {
|
|
126
128
|
border: 0px solid currentColor;
|
|
127
129
|
box-shadow: 0px 0px 0px 2px inset;
|
|
128
130
|
background: transparent !important;
|
|
131
|
+
color: map-get($foreground, base);
|
|
132
|
+
border-color: map-get($foreground, base);
|
|
129
133
|
}
|
|
130
134
|
|
|
131
135
|
&-pill {
|