Skip to content

Commit

Permalink
[chore] Webkit frontend fixes (#1492)
Browse files Browse the repository at this point in the history
* fix webkit profile preview layout

* general page layout
  • Loading branch information
f0x52 authored Feb 14, 2023
1 parent 6c6f042 commit 700ed77
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 25 deletions.
6 changes: 1 addition & 5 deletions web/source/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ html, body {

body {
line-height: 1.5em;
min-height: 100vh;
position: relative;
}

Expand All @@ -56,11 +55,8 @@ body {
}

.page {
position: absolute;
display: grid;
min-height: 100%;
min-width: 100%;
width: 100%;
min-height: 100vh;

grid-template-columns: auto minmax(auto, 50rem) auto;
grid-template-columns: auto min(92%, 50rem) auto;
Expand Down
1 change: 0 additions & 1 deletion web/source/css/profile.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ main {
.profile {
background: $bg-accent;
display: grid;
grid-template-rows: auto auto auto;
grid-template-columns: 100%;
gap: 0.5rem;
margin-bottom: 0.2rem;
Expand Down
37 changes: 18 additions & 19 deletions web/source/settings/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ section {

#root {
display: grid;
grid-template-columns: 1fr 90ch 1fr;
width: 100vw;
max-width: 100vw;
/* keep in sync with base.css .page {} */
grid-template-columns: auto minmax(auto, 50rem) auto;
grid-template-columns: auto min(92%, 50rem) auto;
box-sizing: border-box;

section.with-sidebar {
Expand Down Expand Up @@ -319,22 +319,25 @@ section.with-sidebar > div, section.with-sidebar > form {
display: grid;
grid-template-columns: 70% 30%;
grid-template-rows: 100%;
gap: 1rem;

.profile {
.basic {
margin-bottom: 0.5rem;
/* margin-top: 0; */
}
}

.files {
width: 100%;
margin: 1rem;
margin-right: 0;
display: flex;
flex-direction: column;
justify-content: center;
gap: 1rem;

h3 {
margin-top: 0;
margin-bottom: 0.5rem;
}

div:first-child {
margin-bottom: 1rem;
margin: 0;
margin-bottom: 0.3rem;
}

span {
Expand Down Expand Up @@ -456,7 +459,8 @@ span.form-info {
}
}

@media screen and (max-width: 100ch) {
@media screen and (max-width: 60rem) {
/* vertical layout */
#root {
padding: 1rem;
grid-template-columns: 100%;
Expand Down Expand Up @@ -484,13 +488,8 @@ span.form-info {
}

.user-profile .overview {
grid-template-columns: 100%;
grid-template-rows: auto auto;

.files {
margin: 0;
margin-top: 1rem;
}
grid-template-columns: auto;
grid-template-rows: auto 1fr;
}

main section {
Expand Down

0 comments on commit 700ed77

Please sign in to comment.