summaryrefslogtreecommitdiffstats
path: root/tpl/views
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2022-06-16 09:22:21 +0200
committerVolpeon <git@volpeon.ink>2022-06-16 09:22:21 +0200
commit9ea95d1bed4adc3551a6fa01b40b9d0e1ccacb81 (patch)
tree03798cef246e413ddac4a38976d1c8108c89f86e /tpl/views
parentUpdate (diff)
downloadiro-design-9ea95d1bed4adc3551a6fa01b40b9d0e1ccacb81.tar.gz
iro-design-9ea95d1bed4adc3551a6fa01b40b9d0e1ccacb81.tar.bz2
iro-design-9ea95d1bed4adc3551a6fa01b40b9d0e1ccacb81.zip
Added tables scope, fixed anchor styling
Diffstat (limited to 'tpl/views')
-rw-r--r--tpl/views/table.pug25
1 files changed, 25 insertions, 0 deletions
diff --git a/tpl/views/table.pug b/tpl/views/table.pug
index a5f62a7..f74a4cd 100644
--- a/tpl/views/table.pug
+++ b/tpl/views/table.pug
@@ -99,3 +99,28 @@ mixin view-table
99 +table-cell= 'Row 4,1' 99 +table-cell= 'Row 4,1'
100 +table-cell= 'Row 4,2' 100 +table-cell= 'Row 4,2'
101 +table-cell= 'Row 4,3' 101 +table-cell= 'Row 4,3'
102
103 .c-box.s-tables
104 table
105 thead
106 tr
107 th= 'Title'
108 th= 'Title'
109 th= 'Title'
110 tbody
111 tr
112 td= 'Row 1,1'
113 td= 'Row 1,2'
114 td= 'Row 1,3'
115 tr
116 td= 'Row 2,1'
117 td= 'Row 2,2'
118 td= 'Row 2,3'
119 tr
120 td= 'Row 3,1'
121 td= 'Row 3,2'
122 td= 'Row 3,3'
123 tr
124 td= 'Row 4,1'
125 td= 'Row 4,2'
126 td= 'Row 4,3'