aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/PropertiesView.scss
diff options
context:
space:
mode:
authorGeireann Lindfield Roberts <60007097+geireann@users.noreply.github.com>2021-12-02 14:41:08 -0500
committerGitHub <noreply@github.com>2021-12-02 14:41:08 -0500
commit2da3a0355131c02123fddff371c6c66eff78c20a (patch)
tree63769db679a9630df34c3323be8419aac2af377b /src/client/views/PropertiesView.scss
parentc415a692ed51563ea937901860d2532aede93d46 (diff)
parentd94a9f8500e832a853ffb344acac4d5ec4b5e5d3 (diff)
Merge pull request #49 from brown-dash/lauren-linking
Directed selectable links with editing ability in properties panel
Diffstat (limited to 'src/client/views/PropertiesView.scss')
-rw-r--r--src/client/views/PropertiesView.scss42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/client/views/PropertiesView.scss b/src/client/views/PropertiesView.scss
index 554f137cb..437df4739 100644
--- a/src/client/views/PropertiesView.scss
+++ b/src/client/views/PropertiesView.scss
@@ -2,6 +2,7 @@
.propertiesView {
height: 100%;
+ width: 250;
font-family: "Roboto";
cursor: auto;
@@ -836,3 +837,44 @@
.properties-flyout {
grid-column: 2/4;
}
+
+.propertiesView-linking {
+ padding: 5%;
+}
+
+.propertiesView-section {
+ padding: 10px 0;
+}
+
+.propertiesView-input {
+ padding: 4px 8px;
+
+ .text {
+ width: 100%;
+ }
+
+ &.first {
+ padding-top: 6px;
+ }
+
+ &.inline {
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+ justify-content: space-between;
+ }
+
+ .propertiesButton {
+ width: 4rem;
+ }
+}
+
+.propertiesView-label {
+ font-weight: bold;
+ font-size: 12.5px;
+ padding: 4px;
+ display: flex;
+ color: white;
+ padding-left: 8px;
+ background-color: rgb(51, 51, 51);
+} \ No newline at end of file