aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/index.scss
diff options
context:
space:
mode:
authorivarlovlie <ivar.lovlie@gmail.com>2020-07-12 19:25:48 +0200
committerivarlovlie <ivar.lovlie@gmail.com>2020-07-12 19:25:48 +0200
commit25f512633704d3a1020a77addb77c3b9217f10fa (patch)
tree19a11f675d66a8895ccba37571d809d765c4219f /src/styles/index.scss
downloadstartpage-25f512633704d3a1020a77addb77c3b9217f10fa.tar.xz
startpage-25f512633704d3a1020a77addb77c3b9217f10fa.zip
init
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;
+ }
+ }
+ }
+}