Skip to content

Commit 4382cdc

Browse files
committed
change font for alert popup to Roboto and add max width
1 parent 6e89ecc commit 4382cdc

1 file changed

Lines changed: 15 additions & 2 deletions

File tree

src/components/Pages/Complaint.vue

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
</v-btn>
5959
</div>
6060
</v-form>
61-
<v-snackbar color="success" elevation="24" v-model="successMessage">
61+
<v-snackbar class="alert-text" color="success" elevation="24" v-model="successMessage">
6262
Report successfully submitted. Thanks!
6363
<template v-slot:action>
6464
<v-btn
@@ -71,7 +71,7 @@
7171
</template>
7272
</v-snackbar>
7373
<v-snackbar color="error" elevation="24" v-model="errorMessage" multi-line>
74-
Something went wrong with sending your message. Please try again.
74+
<p class="alert-text" >Something went wrong with submitting your report. Please try again.</p>
7575
<template v-slot:action>
7676
<v-btn
7777
text
@@ -190,4 +190,17 @@ export default {
190190
.body{
191191
padding: 8px;
192192
}
193+
194+
.alert-text{
195+
color: var(--shades-white, #FFF);
196+
197+
/* v-text/body-1 */
198+
font-family: Roboto, sans-serif !important;
199+
font-size: 16px;
200+
font-style: normal;
201+
font-weight: 400;
202+
line-height: 24px; /* 150% */
203+
letter-spacing: 0.5px;
204+
max-width: 443px;
205+
}
193206
</style>

0 commit comments

Comments
 (0)