Skip to content

Commit

Permalink
fix:css font border (ilPhil#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
StefaniaGalazzo authored Feb 25, 2022
1 parent 0a847aa commit fac02d1
Show file tree
Hide file tree
Showing 21 changed files with 308 additions and 272 deletions.
2 changes: 2 additions & 0 deletions src/Pages/Likes/Likes.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
.likesContainer {
flex-grow: 1;
.title {
color: darken($mainLightBlue, 30);

display: inline-block;
margin: 0 30px;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Pages/Likes/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import PlaceHolder from "../../components/PlaceHolder";
import Footer from "../../components/Footer/Footer";

const Likes = () => {
const user = useSelector(state => state.user);
const user = useSelector((state) => state.user);
const dispatch = useDispatch();

const [dataLikes, setDataLikes] = useState({ data: [], isRoom: null });
Expand Down
2 changes: 2 additions & 0 deletions src/Pages/Matches/Matches.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
padding-top: 10px;
padding-bottom: 100px;
min-height: calc(100vh - 165px);
color: darken($mainLightBlue, 30);

.separator {
width: 80%;
height: 1px;
Expand Down
5 changes: 2 additions & 3 deletions src/Pages/Profile/Profile.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,9 @@
}

.charsetContainer {
color: darken($mainLightBlue, 30);

max-width: 400px;
border: 2px solid #b9d1e0;
border-radius: 21px;
margin: 40px 0;
box-shadow: 0 3px 13px rgb(0 0 0 / 25%);
Expand All @@ -60,14 +61,12 @@
font-weight: 400;
font-size: 14px;
font-weight: bold;
color: $mainLightBlue;
}
.charSet {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
color: #6fa0bf;

.char {
display: flex;
Expand Down
16 changes: 8 additions & 8 deletions src/Pages/RoomDetails/RoomDetails.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
.main {
padding: 0 20px;
overflow-y: auto;
color: darken($mainLightBlue, 30);
margin-bottom: 60px;

.btnSet {
display: flex;
flex-direction: column;
Expand Down Expand Up @@ -71,16 +74,14 @@
font-weight: 400;
font-size: 14px;
font-weight: bold;
color: $mainLightBlue;
border: 2px solid $mainLightBlue;
border-radius: $radiusDiv;
box-shadow: 0 3px 13px rgba(0, 0, 0, 0.25);
padding: 20px;
max-width: 840px;
span {
margin: 0 10px;
align-items: center;
color: black;
color: darken($mainLightBlue, 30);
font-weight: normal;
svg {
font-size: 14px;
Expand All @@ -92,9 +93,9 @@
flex-wrap: wrap;
justify-content: center;
.charsetContainer {
border: 2px solid rgba(0, 0, 255, 0);
max-width: 400px;
margin: 20px;
border: 2px solid $mainLightBlue;
border-radius: $radiusDiv;
box-shadow: 0 3px 13px rgba(0, 0, 0, 0.25);

Expand All @@ -103,7 +104,6 @@
font-weight: 400;
font-size: 14px;
font-weight: bold;
color: $mainLightBlue;
}
.charSet {
display: flex;
Expand All @@ -130,7 +130,6 @@
}
.charNum {
margin-right: 5px;
color: $mainLightBlue;
font-size: $smallSize;
font-weight: bold;
}
Expand All @@ -151,13 +150,11 @@
max-width: 840px;
padding: 20px;
margin: 20px auto;
border: 2px solid $mainLightBlue;
border-radius: $radiusDiv;
box-shadow: 0 3px 13px rgba(0, 0, 0, 0.25);
p {
margin-bottom: 10px;
font-weight: bold;
color: $mainLightBlue;
}
}
.likes {
Expand Down Expand Up @@ -188,4 +185,7 @@
cursor: pointer;
}
}
.footer {
margin-top: 50px;
}
}
Loading

0 comments on commit fac02d1

Please sign in to comment.