Skip to content

Commit

Permalink
refactor: readjust tabber responsive (#616)
Browse files Browse the repository at this point in the history
  • Loading branch information
JpBurgarelli authored Sep 10, 2024
1 parent 1df7b68 commit 3adda40
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ textarea {

.charactersLimitContainer {
display: flex;
flex-wrap: wrap;

justify-content: space-between;

Expand All @@ -32,6 +33,7 @@ textarea {

.characterLimitWrapper {
display: flex;
flex-wrap: wrap;
gap: 0.8rem;

align-items: center;
Expand Down
1 change: 0 additions & 1 deletion src/components/Preview/Preview.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
@use '~styles/breakpoints.scss' as *;

.container {
width: 54.2rem;
height: 69.7rem;

display: none;
Expand Down
12 changes: 11 additions & 1 deletion src/components/Tabber/PostModes/PostModes.module.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
@use '~styles/global.scss';
@use '~styles/breakpoints.scss' as *;

.postModesHeader {
width: fit-content;

display: flex;
flex-wrap: wrap;

align-self: flex-end;
}

Expand All @@ -11,11 +15,17 @@
font-size: 1.4rem;
font-weight: 500;

padding: 1.2rem;
padding: 0.8rem;

cursor: pointer;

&.active {
color: global.$secondaryPurple;
}
}

@include from1240 {
.postModeTitle {
padding: 1.2rem;
}
}

0 comments on commit 3adda40

Please sign in to comment.