-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ui): fixup! fixup! fixup! fixup! fixup! fixup! responsive ui for …
…tablets
- Loading branch information
1 parent
288a9fe
commit 3d35190
Showing
4 changed files
with
118 additions
and
62 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,58 @@ | ||
@import "../config/mixins"; | ||
|
||
.edit-account { | ||
display: flex; | ||
|
||
.column { | ||
flex: none; | ||
width: 33.3333%; | ||
|
||
@include fullhd { | ||
width: 40%; | ||
} | ||
|
||
@include widescreen { | ||
width: 50%; | ||
} | ||
|
||
@include tablet { | ||
width: 60%; | ||
} | ||
|
||
@include mobile { | ||
width: 100%; | ||
} | ||
|
||
#account-background { | ||
display: flex; | ||
justify-content: space-between; | ||
|
||
.image-inputs { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: flex-end; | ||
margin-right: 1rem; | ||
|
||
.file { | ||
.file-cta { | ||
.file-label { | ||
@include desktop { | ||
display: none; | ||
} | ||
} | ||
|
||
.file-icon { | ||
@include desktop { | ||
margin: 0; | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
.buttons { | ||
justify-content: space-between; | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
@import "../config/mixins"; | ||
|
||
.new-account { | ||
display: flex; | ||
|
||
.column { | ||
flex: none; | ||
width: 33.3333%; | ||
|
||
@include fullhd { | ||
width: 40%; | ||
} | ||
|
||
@include widescreen { | ||
width: 50%; | ||
} | ||
|
||
@include tablet { | ||
width: 60%; | ||
} | ||
|
||
@include mobile { | ||
width: 100%; | ||
} | ||
|
||
form .columns { | ||
display: flex; | ||
justify-content: space-between; | ||
} | ||
|
||
.buttons { | ||
justify-content: flex-end | ||
} | ||
} | ||
} |
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