Skip to content

Commit

Permalink
Move vue style to scss
Browse files Browse the repository at this point in the history
  • Loading branch information
dannyatthaya committed Aug 18, 2021
1 parent f48a5a4 commit 17b21aa
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 37 deletions.
4 changes: 4 additions & 0 deletions src/resources/js/assets/scss/layout/_container.scss
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,7 @@
}
}
}

.content {
min-height: calc(100vh - 142px);
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.notification-item {
display: flex;
flex-direction: column;
}
.row-div {
display: flex;
align-items: center;
}
17 changes: 17 additions & 0 deletions src/resources/js/assets/scss/page/_site-management.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,21 @@
&__container {
padding-top: 20px;
}
}

.vs-tabs--btn {
font-size: 1.25rem;
margin-bottom: 0px;
font-family: inherit;
font-weight: 700;
line-height: 1.2;
}
.config-key {
font-size: 1rem;
margin-bottom: 15px;
font-weight: bold;
line-height: 1.2;
}
.inputx {
margin-top: 5px;
}
11 changes: 0 additions & 11 deletions src/resources/js/components/BadasoNotificationMessage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -93,17 +93,6 @@
</div>
</template>

<style>
.notification-item {
display: flex;
flex-direction: column;
}
.row-div {
display: flex;
align-items: center;
}
</style>

<script>
export default {
data() {
Expand Down
5 changes: 0 additions & 5 deletions src/resources/js/layout/admin/Container.vue
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,3 @@ export default {
},
};
</script>
<style>
.content {
min-height: calc(100vh - 142px);
}
</style>
2 changes: 0 additions & 2 deletions src/resources/js/layout/public/Container.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,3 @@
<router-view :key="$route.path"></router-view>
</div>
</template>

<style>
19 changes: 0 additions & 19 deletions src/resources/js/pages/configuration/browse.vue
Original file line number Diff line number Diff line change
Expand Up @@ -412,22 +412,3 @@ export default {
},
};
</script>

<style>
.vs-tabs--btn {
font-size: 1.25rem;
margin-bottom: 0px;
font-family: inherit;
font-weight: 700;
line-height: 1.2;
}
.config-key {
font-size: 1rem;
margin-bottom: 15px;
font-weight: bold;
line-height: 1.2;
}
.inputx {
margin-top: 5px;
}
</style>

0 comments on commit 17b21aa

Please sign in to comment.