holygrail2 1.3.46 → 1.3.48

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "holygrail2",
3
- "version": "1.3.46",
3
+ "version": "1.3.48",
4
4
  "description": "A minimal, responsive, style-agnostic CSS framework.",
5
5
  "main": "scss/style.scss",
6
6
  "style": "dist/style.css",
@@ -138,6 +138,22 @@
138
138
  text-align: center;
139
139
  }
140
140
 
141
+ .items-center {
142
+ align-items: center;
143
+ }
144
+
145
+ .items-start {
146
+ align-items: flex-start;
147
+ }
148
+
149
+ .items-end {
150
+ align-items: flex-end;
151
+ }
152
+
153
+ .items-stretch {
154
+ align-items: stretch;
155
+ }
156
+
141
157
  .sticky-bottom {
142
158
  width: 100%;
143
159
  position: absolute;
@@ -191,6 +191,12 @@ b {
191
191
  flex-flow: row nowrap;
192
192
  padding: 16px;
193
193
  }
194
+ .text-inherit {
195
+ font-weight: inherit;
196
+ font-size: inherit;
197
+ font-family: inherit;
198
+ line-height: inherit;
199
+ }
194
200
  .text-lowercase {
195
201
  text-transform: lowercase;
196
202
  }
@@ -65,6 +65,63 @@ $break-xl: 1200px !default;
65
65
  }
66
66
  }
67
67
 
68
+
69
+ .mr-auto {
70
+ margin-inline-end: auto;
71
+ }
72
+
73
+ .sm\:mr-auto {
74
+ @media (min-width: $break-sm) {
75
+ margin-inline-end: auto;
76
+ }
77
+ }
78
+
79
+ .md\:mr-auto {
80
+ @media (min-width: $break-md) {
81
+ margin-inline-end: auto;
82
+ }
83
+ }
84
+
85
+ .lg\:mr-auto {
86
+ @media (min-width: $break-lg) {
87
+ margin-inline-end: auto;
88
+ }
89
+ }
90
+
91
+ .xl\:mr-auto {
92
+ @media (min-width: $break-xl) {
93
+ margin-inline-end: auto;
94
+ }
95
+ }
96
+
97
+ .ml-auto {
98
+ margin-inline-start: auto;
99
+ }
100
+
101
+ .sm\:ml-auto {
102
+ @media (min-width: $break-sm) {
103
+ margin-inline-start: auto;
104
+ }
105
+ }
106
+
107
+ .md\:ml-auto {
108
+ @media (min-width: $break-md) {
109
+ margin-inline-start: auto;
110
+ }
111
+ }
112
+
113
+ .lg\:ml-auto {
114
+ @media (min-width: $break-lg) {
115
+ margin-inline-start: auto;
116
+ }
117
+ }
118
+
119
+ .xl\:ml-auto {
120
+ @media (min-width: $break-xl) {
121
+ margin-inline-start: auto;
122
+ }
123
+ }
124
+
68
125
  .sm\:mb-0 {
69
126
  @media (min-width: $break-sm) {
70
127
  margin-bottom: 0;
@@ -1513,24 +1513,38 @@ button {
1513
1513
  }
1514
1514
  }
1515
1515
  .btn-quick {
1516
+ align-items: center;
1516
1517
  background-color: transparent;
1517
1518
  border: 0 solid transparent;
1519
+ display: inline-flex;
1520
+ flex-flow: row nowrap;
1521
+ gap: 4px;
1518
1522
  height: auto;
1519
- min-height: auto;
1520
- padding: 16px;
1521
- svg {
1522
- g {
1523
+ justify-content: space-between;
1524
+ min-height: 16px;
1525
+ min-width: 36px;
1526
+ padding: 0;
1527
+ width: auto;
1528
+ color: $c-primary;
1529
+ background-color: transparent;
1530
+ line-height: 1;
1531
+
1532
+ .text {
1533
+ line-height: 1;
1534
+ }
1535
+
1536
+ md-icon,
1537
+ .icon {
1538
+ display: inline-flex;
1539
+ flex-flow: column nowrap;
1540
+ justify-content: center;
1541
+ align-items: center;
1542
+
1543
+ path {
1523
1544
  fill: $c-primary;
1524
- stroke: $c-primary;
1525
- }
1526
- circle {
1527
- stroke: $c-primary;
1528
1545
  }
1529
1546
  }
1530
- .icon-sizes {
1531
- margin-top: -6px;
1532
- transform: translate(4px, 5px);
1533
- }
1547
+
1534
1548
  &:focus,
1535
1549
  &.focus,
1536
1550
  &:hover,
@@ -1540,19 +1554,16 @@ button {
1540
1554
  border: 0 solid transparent;
1541
1555
  background-color: transparent;
1542
1556
  cursor: pointer;
1543
- .tab-inner-size {
1544
- position: relative;
1545
- }
1546
- .tab-inner-size::after {
1547
- position: absolute;
1548
- left: 0;
1549
- bottom: -2px;
1550
- content: '';
1551
- width: 100%;
1552
- height: 1px;
1553
- background-color: #000;
1557
+
1558
+ }
1559
+
1560
+ &:hover,
1561
+ &.hover {
1562
+ .text {
1563
+ text-decoration: underline;
1554
1564
  }
1555
1565
  }
1566
+
1556
1567
  &:disabled,
1557
1568
  &[disabled],
1558
1569
  &.disabled {
@@ -1570,6 +1581,7 @@ button {
1570
1581
  border: 0 solid transparent !important;
1571
1582
  }
1572
1583
  }
1584
+
1573
1585
  .has-light & {
1574
1586
  color: $c-white;
1575
1587
  border-color: transparent;