-
-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #560 from Utsavladia/Fix-for-mobile
Fixed chatbot for mobile screen and fixed Navbar at top
- Loading branch information
Showing
4 changed files
with
220 additions
and
86 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,52 @@ | ||
:root, | ||
body, | ||
html { | ||
overflow-x: hidden; | ||
height: 100%; | ||
overflow-x: hidden; | ||
height: 100%; | ||
} | ||
|
||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
body { | ||
min-height: 100vh; | ||
display: grid; | ||
grid-template-rows: 1fr auto; | ||
margin: 0; | ||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", | ||
"Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", | ||
"Helvetica Neue", sans-serif; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
text-align: center; | ||
background: linear-gradient(to left, #04121e, rgb(39, 2, 13), #021f23); | ||
color: #8758f6; | ||
position:relative; | ||
min-height: 100vh; | ||
display: grid; | ||
grid-template-rows: 1fr auto; | ||
margin: 0; | ||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", | ||
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", | ||
sans-serif; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
text-align: center; | ||
background: linear-gradient(to left, #04121e, rgb(39, 2, 13), #021f23); | ||
color: #8758f6; | ||
position: relative; | ||
padding-top: 32px; | ||
} | ||
|
||
.darkmode-layer, | ||
.darkmode-toggle { | ||
z-index: 35; | ||
position: absolute; | ||
bottom: 18px !important; | ||
|
||
} | ||
|
||
code { | ||
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", | ||
monospace; | ||
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", | ||
monospace; | ||
} | ||
|
||
img { | ||
background: #ffffff; | ||
padding: 3px; | ||
margin: 5px; | ||
border-radius: 40px; | ||
|
||
background: #ffffff; | ||
padding: 3px; | ||
margin: 5px; | ||
border-radius: 40px; | ||
} | ||
|
||
.darkmode--activated img { | ||
|
||
filter: invert(1); | ||
filter: invert(1); | ||
} |
Oops, something went wrong.