Skip to content

Commit

Permalink
improvement style content actions
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasferreiralimax committed Oct 26, 2024
1 parent 2d3c5ab commit 53d399e
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function returnVoiceTranscript(transcript) {
<template>
<Nucleus :config="configApp">
<div class="content">
<h2>VoiceCapture Example</h2>
<h2>Voice Capture Example</h2>
<div class="content-actions">
<div class="example-actions">
<button
Expand Down Expand Up @@ -162,4 +162,19 @@ function returnVoiceTranscript(transcript) {
resize: vertical;
height: 100px;
}
.content-actions {
display: flex;
gap: 20px;
button,
.language {
width: 50%;
}
@media (max-width: 800px) {
flex-direction: column;
.language {
width: 100%;
}
}
}
</style>

0 comments on commit 53d399e

Please sign in to comment.