Styling changes to increase reactivity of CRM UI.

This commit is contained in:
rocketdebris 2026-01-02 15:31:41 -05:00
parent 58e69596bb
commit 702e718431
3 changed files with 50 additions and 25 deletions

View file

@ -1,6 +1,6 @@
<template>
<div class="form-section">
<h3>Address Information</h3>
<h3>Property Address Information</h3>
<div class="form-grid">
<div class="form-field full-width">
<label for="address-line1"> Address Line 1 <span class="required">*</span> </label>
@ -151,8 +151,9 @@ const handleZipcodeInput = async (event) => {
}
.form-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
display: flex;
flex-direction: column;
flex-wrap: wrap;
gap: 1rem;
}