Merge branch '206-join-link-text-overflow' into 'dev'
joined link text overflow fixed See merge request keanuapp/keanuapp-weblite!33
This commit is contained in:
commit
4b413c1893
2 changed files with 3 additions and 1 deletions
|
|
@ -487,6 +487,8 @@ $admin-fg: white;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin: 20px;
|
margin: 20px;
|
||||||
user-select: text;
|
user-select: text;
|
||||||
|
overflow-wrap: break-word;
|
||||||
|
word-break: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
.notice {
|
.notice {
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
<div class="mt-2" v-if="roomJoinRule == 'public'">
|
<div class="mt-2" v-if="roomJoinRule == 'public'">
|
||||||
<i18n path="room_welcome.join_public" tag="span">
|
<i18n path="room_welcome.join_public" tag="span">
|
||||||
<template v-slot:link>
|
<template v-slot:link>
|
||||||
<a :href="publicRoomLink">{{ publicRoomLink }}</a>
|
<a :href="publicRoomLink" class="text-break">{{ publicRoomLink }}</a>
|
||||||
</template>
|
</template>
|
||||||
</i18n>
|
</i18n>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue