Skip to content

Commit

Permalink
[김희진] sprint3 (#46)
Browse files Browse the repository at this point in the history
* refactor: further adjustments after code review

* refactor: remove index image width

* refactor: merge index content description

* fix: restore btn-items

* feat: add index hero tablet size css

* refactor: merge index title

* refactor: remove margin and add gap

* feat: add index main content tablet size css

* feat: add index bottom content tablet css

* feat: modify footer justify content

* feat: add index hero mobile css

* feat: add botton and footer mobile css

* feat: add max-container on mobile size

* feat: add og tag

* fix: remove body 100vh on mobile size

* refactor: add reset css and create login, signup directory

* chore: test git action

* chore: test git action

* chore: git action
  • Loading branch information
devmanta authored Aug 26, 2024
1 parent b67a016 commit 456167a
Show file tree
Hide file tree
Showing 9 changed files with 315 additions and 108 deletions.
15 changes: 14 additions & 1 deletion .github/workflows/delete-merged-branch-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,20 @@ jobs:
delete-branch:
runs-on: ubuntu-latest
steps:
- name: delete branch
- name: Checkout repository
uses: actions/checkout@v3

- name: Check if branch exists
id: check_branch
run: |
if git show-ref --verify --quiet refs/heads/${{ github.head_ref }}; then
echo "branch_exists=true" >> $GITHUB_ENV
else
echo "branch_exists=false" >> $GITHUB_ENV
fi
- name: Delete branch
if: env.branch_exists == 'true'
uses: SvanBoxel/delete-merged-branch@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42 changes: 5 additions & 37 deletions css/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,51 +16,19 @@
--size-max-width: 1200px;
}

@font-face {
font-family: 'ROKAF Sans'; /* 폰트 이름 정의 */
src: url('../fonts/ROKAF_Sans_Bold.ttf') format('truetype');
}

* {
box-sizing: border-box;
font-family: 'Pretendard', sans-serif;
margin: 0;
padding: 0;
}

header {
position: fixed;
top: 0;
width: 100%;
background-color: #fff;
}

body {
margin: 0;
padding: 0;
height: 100vh;
}

a {
text-decoration: none;
}

button {
border: none;
outline: none;
cursor: pointer;
}

footer {
background-color: var(--Secondary-900);
width: 100%;
}

input {
outline: none;
border: none;
}

input:focus {
outline: none;
}

input[type='submit'] {
cursor: pointer;
outline: none;
}
Loading

0 comments on commit 456167a

Please sign in to comment.