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

Commit

Permalink
Re - Fixes Large Folder Name Bug (#312)
Browse files Browse the repository at this point in the history
Fixes Issues caused due to merging of #306 , which removed certain css properties from styles.scss
  • Loading branch information
GaganAgarwal77 committed Jan 2, 2021
1 parent dcea412 commit 26596c0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,10 @@ $canvasboard-theme: mat-light-theme($canvasboard-primary, $canvasboard-accent, $
.folder-title {
font-family: Questrial,sans-serif;
margin-top: 3rem;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 15rem;
}

.folder-discription {
Expand Down Expand Up @@ -207,7 +211,7 @@ $canvasboard-theme: mat-light-theme($canvasboard-primary, $canvasboard-accent, $
}


@media (max-width: 768px) {
@media (max-width: 990px) {
.cbff-container {
grid-template-columns: repeat(2,1fr);
}
Expand Down

0 comments on commit 26596c0

Please sign in to comment.