Skip to content

Commit

Permalink
fix(frontend): placeholders width and position tm-695 (#719)
Browse files Browse the repository at this point in the history
* fix(frontend): placeholders width and position  tm-695

* fix(frontend): delete medium media  tm-695
  • Loading branch information
Vfivew authored Mar 23, 2024
1 parent d895191 commit 1dd2e6d
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

.empty-page-placeholder {
padding-block: 20px;
margin-top: 200px;
font-size: var(--font-size-400);
font-weight: 600;
color: var(--color-text-100);
Expand All @@ -14,8 +15,15 @@
font-size: var(--font-size-300);
}

@media screen and (--large-screen) {
.empty-page-placeholder {
margin-top: 100px;
}
}

@media screen and (--small-screen) {
.empty-page-placeholder {
margin-top: 40px;
font-size: var(--font-size-300);
}
}

0 comments on commit 1dd2e6d

Please sign in to comment.