summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTyler Nienhouse <flakeparadigm@gmail.com>2022-02-26 14:53:37 +1100
committerTyler Nienhouse <flakeparadigm@gmail.com>2022-05-11 20:11:47 +1000
commitf74ce2f7e64e308965168a5d131c45b305dfdf7f (patch)
tree6fb32f7e11ca4ce47c9bdc13539a14682fdd0af8 /src
parent53390f4d0da40377abee60413e408162c170233d (diff)
Fix the height of the ContactDetails container
Without a well-defined height, dropdowns like Groups & Add new property would get cut off before the bottom of the page Signed-off-by: Tyler Nienhouse <flakeparadigm@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/ContactDetails.vue5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/components/ContactDetails.vue b/src/components/ContactDetails.vue
index c73c94f6..8767b444 100644
--- a/src/components/ContactDetails.vue
+++ b/src/components/ContactDetails.vue
@@ -768,6 +768,11 @@ export default {
</script>
<style lang="scss" scoped>
+// Container height fix for dropdowns
+.app-content-details {
+ min-height: calc(100vh - var(--header-height));
+}
+
// List of all properties
section.contact-details {
margin: 0 auto;