File tree Expand file tree Collapse file tree 2 files changed +26
-1
lines changed
uikit-workshop/src/sass/scss/04-components Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ const markdown_parser = function() {
15
15
try {
16
16
// for each block process the yaml frontmatter and markdown
17
17
// even if the pattern only has pattern data without further documentation
18
- const frontmatterRE = / - - - \r ? \n { 1 } ( [ \s \S ] * ) - - - ( [ \s \S ] * ) + / gm;
18
+ const frontmatterRE = / - - - \r ? \n { 1 } ( [ \s \S ] * ) ^ - - - ( [ \s \S ] * ) + / gm;
19
19
const chunks = frontmatterRE . exec ( block ) ;
20
20
21
21
if ( chunks ) {
Original file line number Diff line number Diff line change 136
136
li {
137
137
margin-bottom : 0.5rem ;
138
138
}
139
+
140
+ table {
141
+ width : 100% ;
142
+ max-width : 100% ;
143
+ border-collapse : collapse ;
144
+ overflow-x : auto ;
145
+ margin : 0.75rem auto ;
146
+ }
147
+
148
+ tr :nth-of-type (odd ) {
149
+ background : $pl-color-gray-07 ;
150
+ }
151
+
152
+ th {
153
+ background : $pl-color-gray-13 ;
154
+ color : black ;
155
+ font-weight : bold ;
156
+ }
157
+
158
+ td ,
159
+ th {
160
+ padding : 10px ;
161
+ border : 1px solid $pl-color-gray-20 ;
162
+ text-align : left ;
163
+ }
139
164
}
You can’t perform that action at this time.
0 commit comments