fork of hey-api/openapi-ts because I need some additional things
at main 64 lines 769 B view raw
1:host { 2 display: grid; 3 gap: 20px; 4 max-width: 400px; 5 margin: auto; 6} 7 8.pet-store-header { 9 display: flex; 10 gap: 1rem; 11 align-items: flex-start; 12 flex-wrap: wrap; 13} 14 15mat-card { 16 margin-bottom: 20px; 17} 18 19.pet-card { 20 width: 100%; 21 margin-top: 1rem; 22} 23 24.pet-card-title { 25 font-size: 1.4rem; 26 font-weight: 600; 27} 28 29.pet-card-subtitle { 30 font-size: 1rem; 31 color: #666; 32} 33 34.pet-card-image { 35 object-fit: cover; 36 min-height: 180px; 37 background: #fafafa; 38} 39 40.pet-status { 41 margin-top: 0.5rem; 42 color: #888; 43} 44 45.pet-form-card { 46 margin-top: 2rem; 47 max-width: 400px; 48} 49 50.pet-form-title { 51 font-size: 1.2rem; 52 font-weight: 500; 53} 54 55.pet-form-content { 56 display: flex; 57 flex-direction: column; 58 gap: 1rem; 59} 60 61.actions { 62 display: flex; 63 gap: 0.5rem; 64}