Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
JadeMin committed Jun 5, 2024
1 parent cf598bf commit ee955b8
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 10 deletions.
5 changes: 4 additions & 1 deletion src/app/components/footer/index.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
footer {
position : absolute;
padding: 14px 0 14px 30px;

border-top: 1px solid #e9ecef;

bottom: 0;

background-color: #f8f9fa;
font-size: 12px;
Expand Down
21 changes: 13 additions & 8 deletions src/app/page.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ main {
display: flex;
justify-content: space-between;

padding: 0 90px;
padding: 0 120px;

#content {
flex-grow: 2;
Expand Down Expand Up @@ -41,24 +41,29 @@ main {

aside {
padding: 10px;
margin: 10px;

flex-grow: 1;

min-width: 130px;

#hat {
border-top-right-radius: 7px;
border-top-left-radius: 7px;
padding: 10px;

border-top-right-radius: 5px;
border-top-left-radius: 5px;

background-color: #FFD700;
background-color: #1D89FF;

color: white;
}

#shoes {
border-bottom-right-radius: 7px;
border-bottom-left-radius: 7px;
padding: 10px;

border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;

background-color: red;
background-color: #EEEEEE;

ul {
margin: 0px;
Expand Down
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default function Home() {
</div>
<aside>
<div id="hat">
<span>구독 중인 알림 <FaCheckCircle color="green"/></span>
<span>구독 중인 알림 <FaCheckCircle color="#5FA777"/></span>
</div>
<div id="shoes">
<ul>
Expand Down

0 comments on commit ee955b8

Please sign in to comment.