1- $units : 0 , 1 , 2 , 3 , 4 ;
1+ $units : 0 , 1 , 2 , 3 , 4 , 5 , 6 ;
22
3+ .box-border { box-sizing : border-box ; }
4+
5+ .absolute { position : absolute ; }
36.relative { position : relative ; }
47
58.sticky {
69 position : -webkit-sticky ;
710 position : sticky ;
811}
912
10- .right-0 {
11- right : 0 ;
12- }
13+ .top-0 { top : 0 ; }
14+ .right-0 { right : 0 ; }
15+ .bottom-0 { bottom : 0 ; }
16+ .left-0 { left : 0 ; }
17+
18+ .overflow-auto { overflow : auto ; }
19+ .overflow-hidden { overflow : hidden ; }
1320
21+ .inline-block { display : inline-block ; }
1422.flex { display : flex ; }
1523.inline-flex { display : inline-flex ; }
1624
@@ -19,19 +27,27 @@ $units: 0, 1, 2, 3, 4;
1927.flex-shrink { flex-shrink : 1 ; }
2028.flex-shrink-0 { flex-shrink : 0 ; }
2129
30+ .flex-row { flex-direction : row ; }
31+ .flex-col { flex-direction : column ; }
2232.items-center { align-items : center ; }
2333.self-stretch { align-self : stretch ; }
34+ .justify-start { justify-content : flex-start ; }
35+ .justify-center { justify-content : center ; }
2436
25- .w-5 { width : var (--unit5 ); }
26- .w-6 { width : var (--unit6 ); }
2737.w-7 { width : var (--unit7 ); }
2838.w-8 { width : var (--unit8 ); }
2939.w-9 { width : var (--unit9 ); }
3040.w-10 { width : var (--unit10 ); }
3141.w-11 { width : var (--unit11 ); }
3242.w-12 { width : var (--unit12 ); }
3343
44+ .w-full { width : 100% ; }
45+ .w-auto { width : auto ; }
3446.h-full { height : 100% ; }
47+ .h-auto { height : auto ; }
48+
49+ .m-auto { margin : auto ; }
50+ .border-0 { border-width : 0 ; }
3551
3652@each $key in $units {
3753 .w-#{$key } { width : var (--unit #{$key } ); }
@@ -70,8 +86,6 @@ $units: 0, 1, 2, 3, 4;
7086 }
7187}
7288
73- .border-0 { border-width : 0 ; }
74-
7589.rounded-none { border-radius : 0 ; }
7690.rounded-sm { border-radius : calc (var (--unit1 ) / 2 ); }
7791.rounded { border-radius : var (--unit1 ); }
@@ -80,18 +94,49 @@ $units: 0, 1, 2, 3, 4;
8094
8195.font-bold { font-weight : bold ; }
8296.font-mono { font-family : var (--font-monospace ); }
97+ .leading-none { line-height : 1 ; }
8398.no-underline { text-decoration : none ; }
99+ .underline { text-decoration : underline ; }
84100.text-left { text-align : left ; }
85101.text-center { text-align : center ; }
86102.text-right { text-align : right ; }
87103.whitespace-no-wrap { white-space : nowrap ; }
88104
89105.bg-transparent { background-color : var (--transparent ); }
90- .bg-base00 { background-color : var (--base00 ); }
91- .bg-base01 { background-color : var (--base01 ); }
92- .bg-base02 { background-color : var (--base02 ); }
106+
107+ .fill-current { fill : currentColor ; }
93108
94109.cursor-default { cursor : default ; }
95110.cursor-pointer { cursor : pointer ; }
111+ .cursor-col-resize { cursor : col-resize ; }
96112
97113.z-10 { z-index : 10 ; }
114+
115+ .appearance-none {
116+ -webkit-appearance : none ;
117+ -moz-appearance : none ;
118+ appearance : none ;
119+ }
120+
121+ .pointer-events-none { pointer-events : none ; }
122+
123+ .outline-none { outline : 0 ; }
124+
125+ /*
126+ Utilities not part of Tailwind:
127+ */
128+
129+ .text-inherit { color : var (--inherit ); }
130+
131+ .bg-base00 { background-color : var (--base00 ); }
132+ .bg-base01 { background-color : var (--base01 ); }
133+ .bg-base02 { background-color : var (--base02 ); }
134+ .bg-base05 { background-color : var (--base05 ); }
135+ .bg-spec00 { background-color : var (--spec00 ); }
136+
137+ .text-base11 { color : var (--base11 ); }
138+ .text-base13 { color : var (--base13 ); }
139+
140+ .text-12 { font-size : 12px ; }
141+ .text-13 { font-size : 13px ; }
142+ .text-18 { font-size : 18px ; }
0 commit comments