File tree Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -76,6 +76,7 @@ export default Vue.extend({
76
76
padding : 0 !important ;
77
77
}
78
78
.Layer-FormContainer {
79
+ height : 100% ;
79
80
padding : 0 !important ;
80
81
}
81
82
.Layer-Container {
Original file line number Diff line number Diff line change 1
1
<template >
2
2
<bottom-sheet-layer title =" クラス一覧" title-en =" CLASS LIST" fullscreen >
3
3
<template v-slot :LayerContents >
4
- <h1 v-if =" !items || items.length < 1" >
5
- {{ $t('pages.user_classlist.no_classes') }}
6
- </h1 >
4
+ <div v-if =" !items || items.length < 1" class =" noClass" >
5
+ <h1 >
6
+ {{ $t('pages.user_classlist.no_classes') }}
7
+ </h1 >
8
+ </div >
7
9
<v-list v-else >
8
10
<v-radio-group v-model =" selectedClassId" >
9
11
<v-list-item
@@ -78,6 +80,17 @@ export default Vue.extend({
78
80
</script >
79
81
80
82
<style lang="scss" scoped>
83
+ .noClass {
84
+ height : 100% ;
85
+ color : $color-white ;
86
+ display : flex ;
87
+ align-items : center ;
88
+ text-align : center ;
89
+ h1 {
90
+ width : 100% ;
91
+ font-size : 21px ;
92
+ }
93
+ }
81
94
.ClassList-Item {
82
95
& :nth-child (2 n ) {
83
96
background-color : $color-back-gray ;
You can’t perform that action at this time.
0 commit comments