-
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update: [Client][Videos/Watch] 一通りスタイル崩れを修正
ぱっと見はいい感じになった
- Loading branch information
1 parent
cf46ebe
commit 6aad8d0
Showing
13 changed files
with
237 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
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
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,40 @@ | ||
<template> | ||
<div class="series-container"> | ||
鋭意実装中… | ||
</div> | ||
</template> | ||
<script lang="ts"> | ||
import { mapStores } from 'pinia'; | ||
import { defineComponent } from 'vue'; | ||
import usePlayerStore from '@/stores/PlayerStore'; | ||
import Utils from '@/utils'; | ||
export default defineComponent({ | ||
name: 'Panel-SeriesTab', | ||
data() { | ||
return { | ||
// ユーティリティをテンプレートで使えるように | ||
Utils: Utils, | ||
}; | ||
}, | ||
computed: { | ||
...mapStores(usePlayerStore), | ||
} | ||
}); | ||
</script> | ||
<style lang="scss" scoped> | ||
.series-container { | ||
padding-left: 16px; | ||
padding-right: 16px; | ||
overflow-y: auto; | ||
@include tablet-vertical { | ||
padding-left: 24px; | ||
padding-right: 24px; | ||
} | ||
} | ||
</style> |
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
Oops, something went wrong.