Style and animation updates.

This commit is contained in:
Bryan Mauger 2023-04-26 17:17:52 -04:00
parent 8af6ec853d
commit 4e87b2fd9f
2 changed files with 17 additions and 15 deletions

View file

@ -54,7 +54,6 @@
</label>
</div>
</div>
<div id="bottom-spacer"></div>
</fieldset>
<button
v-if="calendarViewDirection === 'future'"
@ -517,7 +516,6 @@ export default {
</script>
<style lang="scss" scoped>
#tracker {
position: absolute;
top: 5px;
@ -536,18 +534,19 @@ export default {
.date-picker {
// == ATTEMPT 3
overflow: hidden;
max-height: 60vh; // IS THIS NEEDED EVEN?
//max-height: 60vh; // IS THIS NEEDED EVEN?
position: relative;
height: 100%;
fieldset {
overflow-y: scroll;
height: 54vh;
overflow-y: auto;
height: 88%;
}
.calendar-grid-container {
margin: 0 auto 2rem auto;
max-width: 414px;
max-height: 500px;
overflow: hidden;
//max-height: 500px;
//overflow: hidden;
// transition: all ease 1s;
transition: height ease 2s, opacity ease 2s;
display: grid;
@ -555,6 +554,7 @@ export default {
justify-content: center;
align-items: center;
padding: 0 0.75rem;
opacity: 1;
.grid-item {
text-align: center;
@ -617,7 +617,7 @@ export default {
justify-content: center;
align-items: center;
outline: none;
height: 2rem;
height: 1.35rem;
opacity: 1;
transition: ease all 250ms;
@ -679,9 +679,9 @@ export default {
display: flex;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
min-width: 40px;
width: 36px;
height: 36px;
min-width: 36px;
border-radius: 50%;
span {
@ -771,7 +771,7 @@ export default {
}
}
&.month-hidden {
visibility: hidden;
opacity: 0;
max-height: 0;
}
}
@ -784,6 +784,8 @@ export default {
font-weight: 500;
text-underline-offset: 4px;
box-shadow: none !important; // TODO: FIX THIS
position: absolute;
top: 90%;
}
.past {

View file

@ -84,7 +84,7 @@ export default {
</script>
<style lang="scss">
// .page-container-grouped-styles {
// padding: 0 .5rem !important;
// }
// .page-container-grouped-styles {
// padding: 0 .5rem !important;
// }
</style>