From bc9d0b39fd04f5f4c1f3d085f19620d80a38f188 Mon Sep 17 00:00:00 2001 From: Tobias Gabelunke Date: Thu, 9 Jul 2020 10:14:53 +0200 Subject: [PATCH] tried to fix sidebar issue - working on local system --- src/app/app.component.css | 6 +++--- .../components/backlog-table/backlog.component.css | 11 ++++++++++- src/app/components/dashboard/dashboard.component.css | 9 +++++++++ .../sprint-table/sprint-table.component.css | 8 ++++++++ .../components/task-table/task-table.component.css | 8 ++++++++ .../userstory-table/userstory-table.component.css | 8 ++++++++ 6 files changed, 46 insertions(+), 4 deletions(-) diff --git a/src/app/app.component.css b/src/app/app.component.css index fe3361e..3589f62 100644 --- a/src/app/app.component.css +++ b/src/app/app.component.css @@ -20,7 +20,7 @@ /* show content beneath sidebar */ .content { - position: relative; - float: right; - margin-top: 10px; + position: relative; + float: right; + margin-top: 10px; } diff --git a/src/app/components/backlog-table/backlog.component.css b/src/app/components/backlog-table/backlog.component.css index a268ac9..ecb808c 100644 --- a/src/app/components/backlog-table/backlog.component.css +++ b/src/app/components/backlog-table/backlog.component.css @@ -1,3 +1,12 @@ th.sortable:hover { text-decoration: underline; -} \ No newline at end of file +} + +/* show content beneath sidebar */ +.content { + position: relative; + float: left; + margin-top: 10px; + margin-left: 10px; + width: 80%; +} diff --git a/src/app/components/dashboard/dashboard.component.css b/src/app/components/dashboard/dashboard.component.css index 8b09ad4..5109b85 100644 --- a/src/app/components/dashboard/dashboard.component.css +++ b/src/app/components/dashboard/dashboard.component.css @@ -5,3 +5,12 @@ .text-very-large { font-size: 2.4rem; } + +/* show content beneath sidebar */ +.content { + position: relative; + float: left; + margin-top: 10px; + margin-left: 10px; + width: 80%; +} diff --git a/src/app/components/sprint-table/sprint-table.component.css b/src/app/components/sprint-table/sprint-table.component.css index e69de29..85d4202 100644 --- a/src/app/components/sprint-table/sprint-table.component.css +++ b/src/app/components/sprint-table/sprint-table.component.css @@ -0,0 +1,8 @@ +/* show content beneath sidebar */ +.content { + position: relative; + float: left; + margin-top: 10px; + margin-left: 10px; + width: 80%; +} diff --git a/src/app/components/task-table/task-table.component.css b/src/app/components/task-table/task-table.component.css index e69de29..85d4202 100644 --- a/src/app/components/task-table/task-table.component.css +++ b/src/app/components/task-table/task-table.component.css @@ -0,0 +1,8 @@ +/* show content beneath sidebar */ +.content { + position: relative; + float: left; + margin-top: 10px; + margin-left: 10px; + width: 80%; +} diff --git a/src/app/components/userstory-table/userstory-table.component.css b/src/app/components/userstory-table/userstory-table.component.css index e69de29..85d4202 100644 --- a/src/app/components/userstory-table/userstory-table.component.css +++ b/src/app/components/userstory-table/userstory-table.component.css @@ -0,0 +1,8 @@ +/* show content beneath sidebar */ +.content { + position: relative; + float: left; + margin-top: 10px; + margin-left: 10px; + width: 80%; +}