about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/styles/components/domains.scss
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2018-03-04 21:46:27 +0100
committerThibaut Girka <thib@sitedethib.com>2018-03-30 10:07:33 +0200
commitafa813d71f0c79805304f66513a3f25bf2d4e839 (patch)
treecd8bca82f9df4ac7608dc4a7f4f787824644efd7 /app/javascript/flavours/glitch/styles/components/domains.scss
parent482ad7d7c4f522deaea2487a150eeaaa0a795979 (diff)
Add basic domain block UI
Diffstat (limited to 'app/javascript/flavours/glitch/styles/components/domains.scss')
-rw-r--r--app/javascript/flavours/glitch/styles/components/domains.scss23
1 files changed, 23 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/styles/components/domains.scss b/app/javascript/flavours/glitch/styles/components/domains.scss
new file mode 100644
index 000000000..a99ccd02b
--- /dev/null
+++ b/app/javascript/flavours/glitch/styles/components/domains.scss
@@ -0,0 +1,23 @@
+.domain {
+  padding: 10px;
+  border-bottom: 1px solid lighten($ui-base-color, 8%);
+
+  .domain__domain-name {
+    flex: 1 1 auto;
+    display: block;
+    color: $primary-text-color;
+    text-decoration: none;
+    font-size: 14px;
+    font-weight: 500;
+  }
+}
+
+.domain__wrapper {
+  display: flex;
+}
+
+.domain_buttons {
+  height: 18px;
+  padding: 10px;
+  white-space: nowrap;
+}