diff options
Diffstat (limited to 'src/styles/index.css')
| -rw-r--r-- | src/styles/index.css | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/styles/index.css b/src/styles/index.css new file mode 100644 index 0000000..e91972e --- /dev/null +++ b/src/styles/index.css @@ -0,0 +1,28 @@ +img { + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; +} + +#cards { + overflow-x: auto; + flex-wrap: unset; +} +#cards .col { + width: 18rem; + max-width: 18rem; + min-width: 18rem; + overflow-y: auto; +} +#cards .col .card .card-header img { + cursor: pointer; +} +#cards .col .card .list-group { + max-height: 33.3vh; + overflow: auto; +} +#cards .col .card .list-group .list-group-item { + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; +}
\ No newline at end of file |
