Commit e30ca484 by Muhammad Usman

name wrapping & left sidebar label issue fixed

parent eb47c8ee
<div class="row" style="height: 100vh;" *ngIf="!isMobileView"> <div class="row" style="min-height: 100vh;" *ngIf="!isMobileView">
<div class="col-md-12 dashboard-wrapper" style="padding: 0;"> <div class="col-md-12 dashboard-wrapper" style="padding: 0; min-height: 100vh;">
<div class="dashboard-left-sidebar"> <div class="dashboard-left-sidebar">
<app-left-sidebar></app-left-sidebar> <app-left-sidebar></app-left-sidebar>
......
...@@ -5,24 +5,22 @@ ...@@ -5,24 +5,22 @@
justify-content: space-between; justify-content: space-between;
height: 100%; height: 100%;
background: #FAFCFD; background: #FAFCFD;
position: relative;
.dashboard { .dashboard {
&-left-sidebar, &-right-sidebar { &-left-sidebar, &-right-sidebar {
height: 100%; min-height: 100vh;
box-shadow: 0 0 20px 0 rgba(128,130,133,0.13); box-shadow: 0 0 20px 0 rgba(128,130,133,0.13);
min-width: 260px; min-width: 260px;
width: 18%; width: 18%;
background: #fff;
} }
&-content { &-content {
width: calc(100% - 520px); width: calc(100% - 520px);
} }
&-right-sidebar {
}
} }
} }
......
...@@ -14,6 +14,9 @@ ...@@ -14,6 +14,9 @@
font-weight: bold; font-weight: bold;
letter-spacing: 0; letter-spacing: 0;
line-height: 32px; line-height: 32px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
} }
&-card { &-card {
......
...@@ -50,7 +50,7 @@ ...@@ -50,7 +50,7 @@
<div class="go-premium-wrapper"> <div class="go-premium-wrapper">
<div class="go-premium"> <div class="go-premium">
<img src="/assets/my-career-web/images/go-premium-temp.png" alt=""> <img src="assets/my-career-web/images/go-premium-temp.png" alt="">
</div> </div>
</div> </div>
......
...@@ -83,7 +83,7 @@ ...@@ -83,7 +83,7 @@
color: #808285; color: #808285;
font-family: $bodyFont; font-family: $bodyFont;
font-size: 11px; font-size: 11px;
bottom: 0; bottom: 20px;
} }
.go-premium-wrapper { .go-premium-wrapper {
......
...@@ -56,6 +56,9 @@ ...@@ -56,6 +56,9 @@
&-name { &-name {
font-weight: 600; font-weight: 600;
text-transform: uppercase; text-transform: uppercase;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment