Skip to content

Commit

Permalink
remove parser, format code
Browse files Browse the repository at this point in the history
  • Loading branch information
s956142 committed Apr 24, 2024
1 parent 9b0aba9 commit b59fd2b
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 55 deletions.
1 change: 0 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// mimic CommonJS variables -- not needed if using CommonJS
module.exports = {
root: true,
parser: "@babel/eslint-parser",
parserOptions: {
ecmaVersion: 2021,
sourceType: "module",
Expand Down
101 changes: 47 additions & 54 deletions src/styles/index.scss
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
.container{
.container {
margin: 0px auto;
padding: 5px;
position: relative;
background-color: #FFFFF4;

.main-view{

background-color: #fffff4;

.main-view {
#canvas {
margin: 0px auto;
padding: 10px;
text-align: center;
background: #FFFFF4;
background: #fffff4;
}
#game-over {
width: 310px;
Expand All @@ -21,65 +20,59 @@
display: none;
}

.game-group-btn{

.game-group-btn {
}

}


.score-board {
.score-board {
vertical-align: top;
.operation-intro{
display:flex;
.operation-intro {
display: flex;
flex-direction: column;
border: 1px solid #181804;
border-radius: 4px;
padding: 10px;

}
}

}

.flex-row {
display: flex;
flex-direction: row;
}
.flex-column {
display: flex;
flex-direction: column;
}
.align-center {
align-items: center;
}
.content-center {
justify-content: center;
}

.flex-row{
display: flex;
flex-direction: row;
}
.flex-column{
display: flex;
flex-direction: column;
}
.align-center{
align-items: center;
}
.content-center{
justify-content: center;
}
.p-relative {
position: relative;
}

.p-relative{
position: relative;
}

.ta-l {
text-align: left;
}
.ta-c {
text-align: center;
}
.fs-0 {
font-size: 0px;
}
.fs-16 {
font-size: 16px;
}
.fs-20 {
font-size: 20px;
}
.mt-10 {
margin-top: 10px;
}
.mr-2 {
margin-right: 2px;
}
.ta-l {
text-align: left;
}
.ta-c {
text-align: center;
}
.fs-0 {
font-size: 0px;
}
.fs-16 {
font-size: 16px;
}
.fs-20 {
font-size: 20px;
}
.mt-10 {
margin-top: 10px;
}
.mr-2 {
margin-right: 2px;
}

0 comments on commit b59fd2b

Please sign in to comment.