diff options
author | usodhi <61431818+usodhi@users.noreply.github.com> | 2020-06-29 16:57:47 +0530 |
---|---|---|
committer | usodhi <61431818+usodhi@users.noreply.github.com> | 2020-06-29 16:57:47 +0530 |
commit | 6ad7fac6342204bc489ef49cb3ba8f450bfa3824 (patch) | |
tree | ea27c3148ce4a076b925d93c58ec0b99b99c74e3 /src/client/util/SharingManager.scss | |
parent | db3ed8fc7acbc1722160992b66fd6b3664c64007 (diff) |
refactored group view into new file
Diffstat (limited to 'src/client/util/SharingManager.scss')
-rw-r--r-- | src/client/util/SharingManager.scss | 39 |
1 files changed, 34 insertions, 5 deletions
diff --git a/src/client/util/SharingManager.scss b/src/client/util/SharingManager.scss index 7b7412ec7..aac9a33e8 100644 --- a/src/client/util/SharingManager.scss +++ b/src/client/util/SharingManager.scss @@ -1,11 +1,33 @@ +@import "../views/globalCssVariables"; + .sharing-interface { display: flex; flex-direction: column; width: 730px; + .dialogue-box { + width: 450; + height: 300; + } + .sharing-contents { display: flex; + button { + background: $darker-alt-accent; + outline: none; + border-radius: 5px; + border: 0px; + color: #fcfbf7; + text-transform: uppercase; + letter-spacing: 2px; + font-size: 75%; + padding: 0 10; + margin: 0 5; + transition: transform 0.2s; + height: 25; + } + .individual-container, .group-container { width: 50%; @@ -72,12 +94,10 @@ } } - - .container { - display: block; + display: flex; position: relative; - margin-top: 10px; + margin-top: 5px; margin-bottom: 10px; font-size: 22px; -webkit-user-select: none; @@ -92,15 +112,24 @@ font-size: 14; font-weight: normal; padding: 0; + align-items: baseline; .padding { - padding: 0 0 0 10px; + padding: 0 10px 0 0; color: black; } .permissions-dropdown { outline: none; + height: 25; } + + .edit-actions { + display: flex; + position: absolute; + right: 51.5%; + } + } .no-users { |