@gyramais/gyra-design 0.1.81 → 0.1.83
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/index.css +12 -3
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -5188,6 +5188,7 @@ h6 {
|
|
|
5188
5188
|
padding: 1rem
|
|
5189
5189
|
}
|
|
5190
5190
|
.gyramais-list .gyramais-list-item {
|
|
5191
|
+
position: relative;
|
|
5191
5192
|
display: flex;
|
|
5192
5193
|
align-items: center;
|
|
5193
5194
|
padding-left: 1.5rem;
|
|
@@ -5195,9 +5196,17 @@ h6 {
|
|
|
5195
5196
|
padding-top: 1rem;
|
|
5196
5197
|
padding-bottom: 1rem
|
|
5197
5198
|
}
|
|
5198
|
-
.gyramais-list .gyramais-list-item:nth-child(odd) {
|
|
5199
|
-
|
|
5200
|
-
|
|
5199
|
+
.gyramais-list .gyramais-list-item:nth-child(odd)::after {
|
|
5200
|
+
pointer-events: none;
|
|
5201
|
+
position: absolute;
|
|
5202
|
+
top: 0px;
|
|
5203
|
+
left: 0px;
|
|
5204
|
+
height: 100%;
|
|
5205
|
+
width: 100%;
|
|
5206
|
+
background-color: var(--primary-button-color);
|
|
5207
|
+
opacity: .04;
|
|
5208
|
+
--tw-content: '';
|
|
5209
|
+
content: var(--tw-content)
|
|
5201
5210
|
}
|
|
5202
5211
|
|
|
5203
5212
|
.gyramais-list .gyramais-list-item-icon {
|