Merge pull request #411 from nextcloud/fix/id_to_class

Change to vue classes
This commit is contained in:
Jan C. Borchardt 2020-05-25 14:41:19 +02:00 committed by GitHub
commit 25ff718ddc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -402,7 +402,7 @@ export default {
</script>
<style lang="scss">
#app-content-vue {
.app-content {
display: flex;
align-items: center;
flex-direction: column;

View file

@ -178,14 +178,14 @@ export default {
}
</script>
<style lang="scss" scoped>
#app-content-vue {
.app-content {
display: flex;
align-items: center;
flex-direction: column;
// Force hide navigation toggle as there is no navigation
// stylelint-disable-next-line selector-pseudo-element-no-unknown
::v-deep #app-navigation-toggle {
::v-deep .app-navigation-toggle {
display: none !important;
}