Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions assets/scss/_styles_project.scss
Original file line number Diff line number Diff line change
Expand Up @@ -532,12 +532,13 @@ a:not([href]):not([class]):hover {
animation: color-shift 8s linear infinite;

@media (max-width: 768px) {
font-size: 3.5rem;
text-align: center;
font-size: 4rem;
}

// @media (max-width:1200px){
// }
@media (max-width: 768px) {
font-size: 3rem;
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Affects only the text size on dashboard. 👍

text-align: center;
}
}

@keyframes color-shift {
Expand Down Expand Up @@ -616,14 +617,18 @@ a:not([href]):not([class]):hover {
text-align: right;

h1.dashboard {
max-width: 40%;
max-width: 70%;
text-align: left;
flex-shrink: 0;
flex-shrink: 0;
@media (max-width: 768px) {
max-width: 60%;
}
}

@media (max-width: 768px) {
flex-wrap: wrap;
justify-content: center;
text-align: center;

h1.dashboard {
max-width: 100%;
Expand Down
Loading