diff options
author | Tyler Murphy <tylermurphy534@gmail.com> | 2023-01-28 02:51:34 -0500 |
---|---|---|
committer | Tyler Murphy <tylermurphy534@gmail.com> | 2023-01-28 02:51:34 -0500 |
commit | c01b8b8c90fa762f25bf52437611643e3ca16e5a (patch) | |
tree | c93293c5c074a03808cdd4b85cdf6001f2f17dd6 /public/css | |
parent | rusty boio finished (diff) | |
download | xssbook-c01b8b8c90fa762f25bf52437611643e3ca16e5a.tar.gz xssbook-c01b8b8c90fa762f25bf52437611643e3ca16e5a.tar.bz2 xssbook-c01b8b8c90fa762f25bf52437611643e3ca16e5a.zip |
fix rerendering logout button, console page
Diffstat (limited to 'public/css')
-rw-r--r-- | public/css/console.css | 16 | ||||
-rw-r--r-- | public/css/profile.css | 7 |
2 files changed, 16 insertions, 7 deletions
diff --git a/public/css/console.css b/public/css/console.css index bc07969..e3fde6a 100644 --- a/public/css/console.css +++ b/public/css/console.css @@ -2,8 +2,6 @@ body { margin: 0; padding: 0; background-color: #181818; - display: flex; - flex-direction: column-reverse; } @font-face { @@ -30,20 +28,20 @@ span { margin-right: 10px; } +.body span { + margin-right: 0; +} + .json span { display: inline; margin: 0; } -.key { - color: white; -} - .value { color: white; } -.boolean { +.bool { color: aqua; } @@ -57,4 +55,8 @@ span { .string { color: #4ae04a +} + +.key .string { + color: white; }
\ No newline at end of file diff --git a/public/css/profile.css b/public/css/profile.css index 4c5ae10..467c756 100644 --- a/public/css/profile.css +++ b/public/css/profile.css @@ -62,6 +62,7 @@ body { height: 3em; display: flex; align-items: center; + justify-content: space-between; } .profilebuttons button { @@ -74,6 +75,7 @@ body { justify-content: center; color: #606770; cursor: pointer; + flex: 0; } .profilebuttons button:hover { @@ -118,4 +120,9 @@ body { text-overflow: ellipsis; white-space: nowrap; overflow: hidden; +} + +.logout { + flex: 1; + /* align-self: flex-end !important; */ }
\ No newline at end of file |