-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dan Wilson
authored
Oct 27, 2022
1 parent
ca55d7d
commit 86ecc4b
Showing
90 changed files
with
32,274 additions
and
1,232 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,28 @@ | ||
.card { | ||
padding: 10px; | ||
background-color: white; | ||
display: flex; | ||
align-items: center; | ||
margin: 0 0 1rem 0; | ||
min-width: 800px; | ||
overflow: hidden; | ||
border-radius: 10px; | ||
box-shadow: 0 0 1px rgba(40, 41, 61, 0.08), 0 0.5px 2px rgba(96, 97, 112, 0.16); | ||
&:hover { | ||
box-shadow: 0 1px 6px -3px rgba(0, 0, 0, 0.5); | ||
box-shadow: 2px 0 -3px rgba(40, 41, 61, 0.08), 0 2px 2px rgba(96, 97, 112, 0.16); | ||
} | ||
&-message { | ||
padding: 1rem; | ||
} | ||
display: flex; | ||
align-items: center; | ||
min-width: 800px; | ||
padding: 10px; | ||
margin: 0 0 1rem 0; | ||
overflow: hidden; | ||
background-color: white; | ||
border-radius: 10px; | ||
box-shadow: 0 0 1px rgba(40, 41, 61, 0.08), 0 0.5px 2px rgba(96, 97, 112, 0.16); | ||
|
||
&:hover { | ||
box-shadow: 0 1px 6px -3px rgba(0, 0, 0, 0.5); | ||
box-shadow: 2px 0 -3px rgba(40, 41, 61, 0.08), 0 2px 2px rgba(96, 97, 112, 0.16); | ||
} | ||
|
||
&-message { | ||
padding: 1rem; | ||
} | ||
} | ||
|
||
@media only screen and (max-width: 992px) { | ||
.card { | ||
min-width: 100%; | ||
max-width: 100%; | ||
overflow: auto; | ||
} | ||
.card { | ||
min-width: 100%; | ||
max-width: 100%; | ||
overflow: auto; | ||
} | ||
} |
16 changes: 8 additions & 8 deletions
16
src/components/pages/build/cards-view/cards-view.module.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
.card-list { | ||
margin: 1rem 2rem; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
margin-top: 40px; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
margin: 1rem 2rem; | ||
margin-top: 40px; | ||
} | ||
|
||
.message { | ||
padding: 1rem; | ||
background-color: white; | ||
border: 1px lightgrey solid; | ||
padding: 1rem; | ||
background-color: white; | ||
border: 1px lightgrey solid; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/components/pages/build/graph-view/diagram/diagram.module.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,32 @@ | ||
.Resizer { | ||
background: transparent; | ||
z-index: 1; | ||
background: transparent; | ||
background-clip: padding-box; | ||
} | ||
|
||
.Resizer.horizontal { | ||
position: relative; | ||
width: 100%; | ||
height: 3px; | ||
padding: 3px 0; | ||
margin: 0; | ||
cursor: row-resize; | ||
width: 100%; | ||
position: relative; | ||
|
||
&::before { | ||
content: ""; | ||
position: absolute; | ||
left: 0; | ||
top: 3px; | ||
right: 0; | ||
left: 0; | ||
height: 3px; | ||
top: 3px; | ||
content: ""; | ||
background: rgba(10, 143, 253, 0.3); | ||
} | ||
} | ||
|
||
.Resizer.disabled { | ||
cursor: not-allowed; | ||
} | ||
|
||
.Resizer.disabled:hover { | ||
border-color: transparent; | ||
} |
Oops, something went wrong.