mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-02-10 15:51:38 +00:00
(add order table mockup)
This commit is contained in:
@@ -17,6 +17,7 @@
|
||||
@import "icons";
|
||||
@import "alerts";
|
||||
@import "lists";
|
||||
@import "tables";
|
||||
|
||||
// Misc
|
||||
@import "vue";
|
||||
|
||||
@@ -10,6 +10,8 @@
|
||||
.border-l { border-left: @border-1 solid @border-color; }
|
||||
.border-r { border-right: @border-1 solid @border-color; }
|
||||
|
||||
.border-b-2 { border-bottom: 2px solid @border-color; }
|
||||
|
||||
.border-rounded { border-radius: @border-radius; }
|
||||
|
||||
|
||||
|
||||
20
resources/assets/less/tables.less
Normal file
20
resources/assets/less/tables.less
Normal file
@@ -0,0 +1,20 @@
|
||||
.table {
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
border-collapse: collapse;
|
||||
|
||||
td, th {
|
||||
.text-left;
|
||||
padding: @spacer-2;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
th {
|
||||
.wt-medium;
|
||||
.border-b-2;
|
||||
}
|
||||
|
||||
td {
|
||||
.border-t;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user