aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/index.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/styles/index.scss')
-rw-r--r--src/styles/index.scss30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/styles/index.scss b/src/styles/index.scss
new file mode 100644
index 0000000..9175250
--- /dev/null
+++ b/src/styles/index.scss
@@ -0,0 +1,30 @@
+img {
+ user-select: none;
+}
+
+#cards {
+ overflow-x: auto;
+ flex-wrap: unset;
+
+ .col {
+ width: 18rem;
+ max-width: 18rem;
+ min-width: 18rem;
+ overflow-y: auto;
+
+ .card .card-header img {
+ cursor: pointer;
+ }
+
+ .card .list-group {
+ max-height: 33.3vh;
+ overflow: auto;
+
+ .list-group-item {
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ overflow: hidden;
+ }
+ }
+ }
+}