Skip to content

Commit

Permalink
Fix: Added styles in global stylesheet
Browse files Browse the repository at this point in the history
  • Loading branch information
shantanu-02 committed Oct 12, 2024
1 parent 8ebf56f commit c87c090
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 14 deletions.
1 change: 1 addition & 0 deletions applications/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/applications/style.css" />
<link rel="stylesheet" href="../global.css" />
<script type="module" src="/applications/script.js" defer></script>
<script src="/helpers/loadENV.js"></script>
<title>Applications</title>
Expand Down
7 changes: 0 additions & 7 deletions applications/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,6 @@ body {
text-align: center;
}

.footer {
width: 100vw;
text-align: center;
position: fixed;
bottom: 4px;
}

.container {
max-width: 1100px;
margin: 0 auto;
Expand Down
7 changes: 7 additions & 0 deletions global.css
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,13 @@ body {
border-radius: 100%;
}

.footer {
width: 100vw;
text-align: center;
position: fixed;
bottom: 4px;
}

@media screen and (max-width: 970px) {
#tasksNav {
justify-content: space-between;
Expand Down
2 changes: 1 addition & 1 deletion groups/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/images/index.ico" type="image/x-icon" />
<title>Discord Groups | Real Dev Squad</title>
<link rel="stylesheet" href="/global.css" />
<link rel="stylesheet" href="../global.css" />
<link rel="stylesheet" href="/groups/style.css" />
<script src="/helpers/loadENV.js"></script>
<script src="/constants.js"></script>
Expand Down
5 changes: 0 additions & 5 deletions groups/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,6 @@ body {
flex-direction: column;
}

.footer {
position: fixed;
bottom: 4px;
}

.container {
flex-grow: 1;
width: clamp(300px, 100%, 1000px);
Expand Down
2 changes: 1 addition & 1 deletion users/discord/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/style.css" />
<link rel="stylesheet" href="../../global.css" />
<link rel="stylesheet" href="/global.css" />
<link rel="stylesheet" href="/users/discord/style.css" />
<title>Discord Users | Real Dev Squad</title>
Expand Down

0 comments on commit c87c090

Please sign in to comment.