-
-
+
+
+
diff --git a/src/app/task-lists/add-task-list/add-task-list.component.scss b/src/app/task-lists/add-task-list/add-task-list.component.scss
index d40413b..3605e0e 100644
--- a/src/app/task-lists/add-task-list/add-task-list.component.scss
+++ b/src/app/task-lists/add-task-list/add-task-list.component.scss
@@ -4,9 +4,4 @@ form {
width: 100%;
}
}
- .actions {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- }
}
\ No newline at end of file
diff --git a/src/app/task-lists/rename-task-list/rename-task-list.component.html b/src/app/task-lists/rename-task-list/rename-task-list.component.html
index 6c988de..930f176 100644
--- a/src/app/task-lists/rename-task-list/rename-task-list.component.html
+++ b/src/app/task-lists/rename-task-list/rename-task-list.component.html
@@ -9,8 +9,8 @@
-
-
-
+
+
+
\ No newline at end of file
diff --git a/src/app/task-lists/rename-task-list/rename-task-list.component.scss b/src/app/task-lists/rename-task-list/rename-task-list.component.scss
index d40413b..3605e0e 100644
--- a/src/app/task-lists/rename-task-list/rename-task-list.component.scss
+++ b/src/app/task-lists/rename-task-list/rename-task-list.component.scss
@@ -4,9 +4,4 @@ form {
width: 100%;
}
}
- .actions {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- }
}
\ No newline at end of file
diff --git a/src/app/task-lists/task-lists.component.ts b/src/app/task-lists/task-lists.component.ts
index 1f984bb..5a0afe6 100644
--- a/src/app/task-lists/task-lists.component.ts
+++ b/src/app/task-lists/task-lists.component.ts
@@ -62,7 +62,7 @@ export class TaskListsComponent implements OnInit, OnDestroy {
this._dialog.open(
RenameTaskListComponent,
{
- width: '20rem'
+ width: '25rem'
}
);
}
diff --git a/src/styles.scss b/src/styles.scss
index e37b010..88e18d2 100644
--- a/src/styles.scss
+++ b/src/styles.scss
@@ -22,6 +22,8 @@
--alert-text: #fff;
--alert-hover: #c20d2b;
--alert-border: #b91b35;
+
+ --selection: #185eb4;
}
html {
@@ -104,7 +106,7 @@ button {
background-color: var(--primary-hover);
}
}
-
+
&.secondary {
background-color: var(--secondary);
@@ -123,4 +125,15 @@ button {
border-color: var(--alert-border);
}
}
+}
+
+.dialog-actions {
+ margin-top: 1rem;
+ display: flex;
+ justify-content: space-between;
+
+ > * {
+ flex: 1 1 45%;
+ max-width: 45%;
+ }
}
\ No newline at end of file