1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-14 02:32:48 +00:00

add upload history to stats UI

This commit is contained in:
2018-10-20 13:53:02 -05:00
parent b004d4f29a
commit 81ecacd3d4
15 changed files with 149 additions and 7 deletions

View File

@@ -12,3 +12,4 @@
@import './input.scss';
@import './grid.scss';
@import './nprogress.scss';
@import './table.scss';

View File

@@ -71,3 +71,9 @@ body {
white-space: nowrap;
text-overflow: ellipsis;
}
.hide-tiny {
@include tinyScreen {
display: none;
}
}

View File

@@ -0,0 +1,14 @@
.table {
width: 100%;
thead {
text-align: left;
}
td,
th {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
}