Modulo Administración #78

Merged
jsegarra merged 19 commits from wbuezas/hedera-web-mindshore:feature/Administracion into 4922-vueMigration 2024-08-23 19:29:46 +00:00
1 changed files with 23 additions and 9 deletions
Showing only changes of commit ef35914f34 - Show all commits

View File

@ -22,17 +22,15 @@ const handleClick = () => {
:class="{ 'cursor-pointer': clickable, 'no-radius': !rounded }"
@click="handleClick()"
>
<QItemSection class="no-padding">
<div class="row no-wrap">
<div class="no-padding content-container col-10">
<slot name="prepend" />
<div class="column full-width">
<div class="content">
<slot name="content" />
</div>
</div>
</QItemSection>
<QItemSection class="no-padding" side>
<div class="no-padding flex full-width justify-center">
<slot name="actions" />
</QItemSection>
</div>
</QItem>
</template>
@ -41,4 +39,20 @@ const handleClick = () => {
border-bottom: 1px solid $gray-light;
padding: 20px;
}
.content {
display: flex;
flex-direction: column;
overflow: hidden;
* {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
.content-container {
display: flex;
}
</style>