-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from Billing-Wise/dev
[release] 1.0.0
- Loading branch information
Showing
227 changed files
with
16,933 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: CI | ||
on: | ||
push: | ||
branches: | ||
- prod | ||
- dev | ||
pull_request: | ||
|
||
jobs: | ||
sonarcloud: | ||
name: SonarCloud | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: SonarCloud Scan | ||
uses: SonarSource/sonarcloud-github-action@master | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
sonar.projectKey=Billing-Wise_client | ||
sonar.organization=billing-wise | ||
|
||
# This is the name and version displayed in the SonarCloud UI. | ||
#sonar.projectName=client | ||
#sonar.projectVersion=1.0 | ||
|
||
|
||
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows. | ||
#sonar.sources=. | ||
|
||
# Encoding of the source code. Default is default system encoding | ||
#sonar.sourceEncoding=UTF-8 |
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
.modal-overlay { | ||
position: fixed; | ||
top: $nav-bar-height; | ||
left: $side-bar-width; | ||
width: calc(100vw - $side-bar-width); | ||
height: calc(100vh - $nav-bar-height); | ||
padding: 20px 0; | ||
background: rgba(255, 255, 255, 0.8); | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
z-index: 999 | ||
} | ||
|
||
.modal-content { | ||
@include flex-box(column, center, 20px); | ||
width: 500px; | ||
max-height: 100%; | ||
padding: 0px 30px; | ||
border-radius : 10px; | ||
box-shadow: $base-shadow; | ||
background-color: white; | ||
.modal-main { | ||
@include flex-box(column, center, 20px); | ||
width: 100%; | ||
max-height: 100%; | ||
overflow: auto; | ||
} | ||
} | ||
|
||
.fade-enter-from, .fade-leave-to { | ||
opacity: 0; | ||
} | ||
|
||
.fade-enter-active, .fade-leave-active{ | ||
transition: all 0.3s; | ||
} | ||
|
||
.fade-enter-to, .fade-leave-from{ | ||
opacity: 1; | ||
} | ||
|
||
/* 웹킷 브라우저의 스크롤바 숨기기 */ | ||
.modal-main::-webkit-scrollbar { | ||
display: none; | ||
} | ||
|
||
/* 파이어폭스의 스크롤바 숨기기 */ | ||
.modal-main { | ||
scrollbar-width: none; /* Firefox */ | ||
} | ||
|
||
/* Edge, IE 10+, 및 최신 브라우저의 스크롤바 숨기기 */ | ||
.modal-main { | ||
-ms-overflow-style: none; /* IE 10+ */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
@mixin select-btn { | ||
border: $theme-color solid 2px; | ||
border-radius: 20px; | ||
width: 100%; | ||
background-color: white; | ||
font-weight: bold; | ||
transition: all 0.5s; | ||
} | ||
|
||
@mixin select-list { | ||
z-index: 10; | ||
position: absolute; | ||
list-style: none; | ||
width: 100%; | ||
padding: 10px; | ||
border-radius: 10px; | ||
border: $theme-color solid 2px; | ||
background-color: white; | ||
li { | ||
width: 100%; | ||
padding: 5px 10px; | ||
border-radius: 10px; | ||
text-align: center; | ||
font-weight: bold; | ||
transition: all 0.3s; | ||
cursor: pointer; | ||
&:hover { | ||
background-color: rgb(0, 0, 0, 0.1) | ||
} | ||
} | ||
} | ||
|
||
.fade-enter-from, .fade-leave-to { | ||
opacity: 0; | ||
} | ||
|
||
.fade-enter-active, .fade-leave-active{ | ||
transition: all 0.2s; | ||
} | ||
|
||
.fade-enter-to, .fade-leave-from{ | ||
opacity: 1; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
.static-box { | ||
@include flex-box(column, space-between, 30px); | ||
padding: 30px; | ||
background-color: white; | ||
border-radius: 15px; | ||
border: $theme-color 4px solid; | ||
|
||
.title-box { | ||
@include flex-box(row, center, 0px); | ||
width: 100%; | ||
font-size: 20px; | ||
font-weight: bolder; | ||
} | ||
} |
Oops, something went wrong.