Skip to content

Commit

Permalink
Merge pull request #64 from 2-guys-Javascript/dev
Browse files Browse the repository at this point in the history
๏ฟฝCSS ์กฐ์ • ์‚ฌํ•ญ ๋ฐฐํฌํ™˜๊ฒฝ ์ ์šฉ
  • Loading branch information
manymogo authored Nov 1, 2023
2 parents e0de1d5 + d8093fc commit bde9a6d
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 13 deletions.
8 changes: 4 additions & 4 deletions src/components/Japan/JapanDefaultLayout.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,22 +54,22 @@
}

.jp-weather-text1 {
color: #ffa7fce7;
font-size: 30px;
color: #000000;
font-size: 26px;
font-weight: 400;
margin-top: 40px;
margin-bottom: 0;
}

.jp-weather-text2 {
color: #0000009e;
color: #00000088;
font-size: 18px;
font-weight: 500;
margin-top: 5px;
}

.jp-where {
color: #ff8cdcf8;
color: #000000;
font-weight: 400;
text-align: center;
}
Expand Down
8 changes: 4 additions & 4 deletions src/components/Korea/KoreaDefaultLayout.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,22 +52,22 @@
}

.kr-weather-text1 {
color: #087953e9;
font-size: 30px;
color: #000000;
font-size: 26px;
font-weight: 400;
margin-top: 40px;
margin-bottom: 0;
}

.kr-weather-text2 {
color: #0000009e;
color: #00000088;
font-size: 18px;
font-weight: 500;
margin-top: 5px;
}

.kr-where {
color: #008138c1;
color: #000000;
font-weight: 400;
text-align: center;
}
16 changes: 14 additions & 2 deletions src/components/Maps/LoginMap.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,19 @@
align-items: center;
}

.marker-info button {
.marker-info-closeDelete button {
box-shadow: 0 0 3px #00000055;
border: 0;
border-radius: 17px;
margin-top: 10px;
font-size: 20px;
padding: 7px 13px;
background-color: #ffffff;
background-color: #000000;
color: #ffffff;
}

.marker-info-closeDelete :nth-child(2) {
background-color: #a80e0e;
}

.marker-info-closeDelete {
Expand All @@ -83,6 +88,7 @@
}

.react-calendar__navigation button {
color: #000000;
background-color: #ffffff;
border: 0;
font-size: 18px;
Expand Down Expand Up @@ -176,6 +182,12 @@ abbr {

.title-box {
margin: 20px 0;
max-width: 460px;
width: 90vw;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}

.title-box label {
Expand Down
1 change: 1 addition & 0 deletions src/components/Maps/LoginMap.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,7 @@ function LoginMap({ isLoggedIn, onChangeIsLoggedIn, userId, onChangeUserId, disp
{selectedNearByPlace && (
<InfoWindow
position={selectedNearByPlace.geometry.location}
options={{ pixelOffset: new window.google.maps.Size(0, -35) }}
onCloseClick={() => SetSelectedNearByPlace(null)}
>
<div>{selectedNearByPlace.name}</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Maps/NonLoginMap.css
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
text-align: start;
border: 1px solid #00000055;
box-shadow: 0 0 3px #00000033;
font-size: 0.7rem;
font-size: 10px;
margin-top: 10px;
border-radius: 15px;
/* box-sizing: border-box; */
Expand Down
11 changes: 9 additions & 2 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ body {
display: flex;
flex-direction: column;
align-items: center;
padding: 0 0 20vh;
padding: 70px 0 20vh;
}

/* ์•„๋ž˜์˜ ๋‘ ์„ค์ •์€ scroll-box ๋ผ๋Š” ํด๋ž˜์Šค๋ฅผ ๊ฐ€์ง„ ์š”์†Œ๋“ค์—๊ฒŒ ์Šคํฌ๋กค์€ ๋˜์ง€๋งŒ, ์Šคํฌ๋กค ๋ฐ”๋Š” ์—†์• ๋Š” ์„ค์ •์ด๋‹ค */
Expand Down Expand Up @@ -96,6 +96,8 @@ body {
list-style-type: none;
border-radius: 15px;
box-shadow: 0 0 5px #00000033;
max-width: 460px;
width: 90vw;
}

.weather-hourly li {
Expand All @@ -105,6 +107,8 @@ body {
align-items: center;
flex: 0 0 auto;
margin: 10px;
color: #000000;
font-size: 12px;
}

.weather-hourly p {
Expand All @@ -127,6 +131,9 @@ body {
flex-direction: column;
border-radius: 15px;
box-shadow: 0 0 5px #00000033;
font-size: 14px;
max-width: 460px;
width: 90vw;
}

.forecast li {
Expand Down Expand Up @@ -166,7 +173,7 @@ body {
.weather-city {
background-color: #ffffff;
text-align: center;
font-size: 20px;
font-size: 14px;
font-weight: 300;
color: #000000;
border-radius: 18px;
Expand Down

0 comments on commit bde9a6d

Please sign in to comment.