Skip to content

Commit

Permalink
refactor: Improve layout and styling of HelloWorld.vue component
Browse files Browse the repository at this point in the history
  • Loading branch information
nilgaar committed Jul 27, 2024
1 parent c7e8b70 commit 85a1fff
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions frontend/src/components/HelloWorld.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,21 +31,24 @@
</v-col>

<v-col cols="12" sm="10" md="8" lg="6">
<v-list dense>
<v-subheader>Dictionaries containing the Password:</v-subheader>
<v-list-item-group v-for="file in files" :key="file">
<v-list-item>
<v-list-item-content>
<v-list-item-title>{{ file }}</v-list-item-title>
</v-list-item-content>
</v-list-item>
</v-list-item-group>
</v-list>
<v-card class="pa-4" color="darkgrey" elevation="2" rounded="lg" outlined>
<v-list dense>
<v-subheader>Dictionaries containing the Password:</v-subheader>
<v-list-item-group v-for="file in files" :key="file">
<v-list-item>
<v-list-item-content>
<v-list-item-title>{{ file }}</v-list-item-title>
</v-list-item-content>
</v-list-item>
</v-list-item-group>
</v-list>
</v-card>
</v-col>
</v-row>
</v-container>
</template>


<script setup lang="ts">
import { ref } from "vue";
import { sha3_512 } from "js-sha3";
Expand Down

0 comments on commit 85a1fff

Please sign in to comment.