Spaces:
Running
Running
File size: 2,399 Bytes
12835a8 f7b10e8 12835a8 703632b f7b10e8 12835a8 703632b f7b10e8 12835a8 76353dd f7b10e8 12835a8 f7b10e8 12835a8 f7b10e8 76353dd 650ca33 76353dd 650ca33 f7b10e8 12835a8 703632b f7b10e8 12835a8 703632b 12835a8 76353dd 703632b 12835a8 76353dd 650ca33 12835a8 76353dd 12835a8 7c29d61 76353dd 12835a8 76353dd 12835a8 76353dd f7b10e8 12835a8 703632b 76353dd f7b10e8 703632b c094023 12835a8 f7b10e8 703632b 12835a8 76353dd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 |
:host {
display: block;
padding: 24px;
max-width: 1200px;
margin: 0 auto;
}
mat-card {
mat-card-header {
margin-bottom: 24px;
mat-card-title {
display: flex;
align-items: center;
gap: 8px;
font-size: 24px;
mat-icon {
font-size: 28px;
width: 28px;
height: 28px;
}
}
}
}
.loading-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 48px;
gap: 16px;
p {
color: rgba(0, 0, 0, 0.6);
margin: 0;
}
}
.provider-section {
margin-bottom: 32px;
h3 {
display: flex;
align-items: center;
gap: 8px;
color: rgba(0, 0, 0, 0.87);
margin-bottom: 16px;
font-size: 18px;
font-weight: 500;
mat-icon {
font-size: 24px;
width: 24px;
height: 24px;
}
}
}
.full-width {
width: 100%;
}
mat-form-field {
margin-bottom: 16px;
&.full-width {
width: 100%;
}
}
mat-divider {
margin: 32px 0;
}
.settings-panel {
margin-top: 16px;
background: #f5f5f5;
mat-expansion-panel-header {
mat-panel-title {
display: flex;
align-items: center;
gap: 8px;
mat-icon {
font-size: 20px;
width: 20px;
height: 20px;
}
}
}
.panel-content {
padding: 16px;
.hint-text {
color: rgba(0, 0, 0, 0.6);
font-size: 14px;
margin-bottom: 16px;
}
}
}
mat-slide-toggle {
display: block;
margin-bottom: 16px;
}
.config-item {
margin: 24px 0;
label {
display: block;
color: rgba(0, 0, 0, 0.87);
font-weight: 500;
margin-bottom: 8px;
}
mat-slider {
width: calc(100% - 60px);
display: inline-block;
}
.slider-value {
display: inline-block;
width: 50px;
text-align: right;
color: rgba(0, 0, 0, 0.6);
font-weight: 500;
}
}
mat-card-actions {
padding: 16px 24px;
margin: 0 -24px -24px;
border-top: 1px solid rgba(0, 0, 0, 0.12);
button {
mat-icon {
margin-right: 4px;
}
}
}
// Icon styling in select options
mat-option {
mat-icon {
margin-right: 8px;
vertical-align: middle;
}
}
// Responsive adjustments
@media (max-width: 768px) {
:host {
padding: 16px;
}
.provider-section {
margin-bottom: 24px;
}
mat-divider {
margin: 24px 0;
}
} |