Skip to content

Commit

Permalink
BC-8357 - add mobile view for participants data table (#3441)
Browse files Browse the repository at this point in the history
Adds a data-table mobile view for devices <600px for the manage participants table in rooms.

* add mobile view for participants table
* make table header bold for mobile view
  • Loading branch information
NFriedo authored Nov 11, 2024
1 parent 1fb2bc0 commit e85ec46
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
t('pages.rooms.participants.participantTable.itemsPerPage')
"
:no-data-text="t('common.nodata')"
:mobile="null"
mobile-breakpoint="sm"
@update:current-items="onUpdateFilter"
>
<template #[`item.actions`]="{ item }">
Expand Down Expand Up @@ -109,8 +111,13 @@ const tableHeader = [
</script>

<style lang="scss" scoped>
:deep .v-data-table-header__content {
:deep(.v-data-table-header__content) {
color: rgba(var(--v-theme-primary-darken-1));
font-weight: bold;
}
/* table header for mobile view */
:deep(.v-data-table__td-title) {
font-weight: bold;
}
</style>

0 comments on commit e85ec46

Please sign in to comment.