summaryrefslogtreecommitdiffstats
path: root/css/contacts.scss
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2018-08-16 11:05:52 +0200
committerGitHub <noreply@github.com>2018-08-16 11:05:52 +0200
commit50ece0d15baf5bab87fd614018490045829b7d25 (patch)
tree4fa7fdd3b0325971d34840038329478221d9a5c3 /css/contacts.scss
parentfdeb168878309a20751e1721036f7a03e4bc53cc (diff)
parent36b9a168810bc4b5997a653b3e91fa2c717b5063 (diff)
Merge branch 'vue' into vue-share-addressbook
Diffstat (limited to 'css/contacts.scss')
-rw-r--r--css/contacts.scss20
1 files changed, 20 insertions, 0 deletions
diff --git a/css/contacts.scss b/css/contacts.scss
index 16911655..7bdb66f0 100644
--- a/css/contacts.scss
+++ b/css/contacts.scss
@@ -1,2 +1,22 @@
+$grid-height-unit: 40px;
+$grid-input-padding: 7px;
+$grid-input-margin: 3px;
+$grid-column-width: 380px;
+$grid-input-height-with-margin: #{$grid-height-unit - $grid-input-margin * 2};
+
+@mixin generate-grid-span($default-unit) {
+ // we only supports 10 props of the same type
+ @for $i from 1 through 10 {
+ &.grid-span-#{$i} {
+ // default unit + title + bottom padding
+ grid-row-start: span #{$i * $default-unit};
+ }
+ }
+}
+
+
+@import 'settings';
@import 'settings-section';
@import 'details';
+@import './Properties/Properties';
+@import './Properties/PropertyTitle'; \ No newline at end of file