Skip to content
This repository has been archived by the owner on Mar 25, 2023. It is now read-only.

Commit

Permalink
fix(dialog-layout): add styles for modal dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
ksendart authored Aug 30, 2017
1 parent b0057bd commit 75ed1b0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,19 @@
.column {
min-width: 300px;
max-width: 300px;
&:first-child {
margin-right: 10px;
}
&:last-child {
margin-left: 10px;
}
}

.flex-dialog-content {
display: flex;
padding: 15px 0;
justify-content: space-between;
overflow: hidden;
overflow: auto;
}

.dynscal-checkbox {
Expand Down
8 changes: 7 additions & 1 deletion src/app/vm/vm-creation/vm-creation.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
display: flex;
padding: 15px 0;
justify-content: space-between;
overflow: auto;
}

h5 {
Expand All @@ -55,9 +56,14 @@ h5 {
margin-top: 20px;
}

.left-column,
.left-column{
width: 300px;
margin-right: 10px;
}

.right-column {
width: 300px;
margin-left: 10px;
}

.root-disk-size {
Expand Down

0 comments on commit 75ed1b0

Please sign in to comment.