mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-19 07:52:16 +00:00
fix(Chrome overflow scroll display): changes overflow scroll to auto to change the visual in the chrome browser
This commit is contained in:
@@ -75,7 +75,7 @@
|
||||
|
||||
.fhc-calendar-week-page .all-day-event{
|
||||
max-height: 75px;
|
||||
overflow:scroll;
|
||||
overflow:auto;
|
||||
}
|
||||
|
||||
.fhc-calendar-week-page .all-day-event-container{
|
||||
@@ -106,7 +106,7 @@
|
||||
.fhc-calendar-day-page .all-day-event {
|
||||
grid-column:2;
|
||||
max-height: 75px;
|
||||
overflow: scroll;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.fhc-calendar-day-page .all-day-event-container {
|
||||
|
||||
@@ -13,7 +13,7 @@ export default {
|
||||
this.$emit('setConfig', false);
|
||||
},
|
||||
template:/*html*/`
|
||||
<div class="p-3 h-100 overflow-scroll">
|
||||
<div class="p-3 h-100 overflow-auto">
|
||||
<studiengang-information displayWidget ></studiengang-information>
|
||||
</div>
|
||||
`
|
||||
|
||||
@@ -157,7 +157,7 @@ export default {
|
||||
// this.$emit('setConfig', true); -> use this to enable widget config mode if needed
|
||||
},
|
||||
template: /*html*/ `
|
||||
<div class="widgets-url w-100 h-100 overflow-scroll" style="padding: 1rem 1rem;">
|
||||
<div class="widgets-url w-100 h-100 overflow-auto" style="padding: 1rem 1rem;">
|
||||
<div class="d-flex flex-column justify-content-between">
|
||||
|
||||
<template v-if="shared">
|
||||
|
||||
Reference in New Issue
Block a user