mirror of
https://github.com/nextcloud/spreed.git
synced 2025-08-19 16:26:22 +00:00
Move app.scss into App.vue
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
10
css/app.scss
10
css/app.scss
@ -1,10 +0,0 @@
|
||||
// Rules for the App.css entry point
|
||||
|
||||
body {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* FIXME: remove after https://github.com/nextcloud/nextcloud-vue/issues/2097 is solved */
|
||||
.mx-datepicker-main.mx-datepicker-popup {
|
||||
z-index: 10001 !important;
|
||||
}
|
@ -1,2 +1 @@
|
||||
@import './icons';
|
||||
@import './app';
|
||||
|
14
src/App.vue
14
src/App.vue
@ -493,10 +493,20 @@ export default {
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
/** override toastify position due to top bar */
|
||||
body.has-topbar .toastify-top {
|
||||
body {
|
||||
overflow: hidden;
|
||||
|
||||
/** override toastify position due to top bar */
|
||||
&.has-topbar .toastify-top {
|
||||
margin-top: 105px;
|
||||
}
|
||||
}
|
||||
|
||||
/* FIXME: remove after https://github.com/nextcloud/nextcloud-vue/issues/2097 is solved */
|
||||
.mx-datepicker-main.mx-datepicker-popup {
|
||||
z-index: 10001 !important;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
Reference in New Issue
Block a user