Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions frontend/src/views/chat/ChatList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ const handleConfirmPassword = () => {
box-shadow: 0px 4px 8px 0px #1f23291a;
border-radius: 4px;
border: 1px solid #dee0e3;
width: 120px !important;
width: fit-content !important;
min-width: 120px !important;
padding: 0;
.content {
Expand All @@ -417,7 +417,7 @@ const handleConfirmPassword = () => {
}
.item {
position: relative;
padding-left: 12px;
padding: 0 12px;
height: 40px;
display: flex;
align-items: center;
Expand All @@ -434,7 +434,7 @@ const handleConfirmPassword = () => {

&::after {
content: '';
width: 112px;
width: calc(100% - 8px);
height: 32px;
border-radius: 4px;
position: absolute;
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/views/ds/Card.vue
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ const onClickOutside = () => {
box-shadow: 0px 4px 8px 0px #1f23291a;
border-radius: 4px;
border: 1px solid #dee0e3;
width: 120px !important;
width: fit-content !important;
min-width: 120px !important;
padding: 0;

Expand All @@ -278,7 +278,7 @@ const onClickOutside = () => {

.item {
position: relative;
padding-left: 12px;
padding: 0 12px;
height: 40px;
display: flex;
align-items: center;
Expand All @@ -297,7 +297,7 @@ const onClickOutside = () => {

&::after {
content: '';
width: 112px;
width: calc(100% - 8px);
height: 32px;
border-radius: 4px;
position: absolute;
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/views/system/embedded/Card.vue
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ const pageLogo = computed(() => {
box-shadow: 0px 4px 8px 0px #1f23291a;
border-radius: 4px;
border: 1px solid #dee0e3;
width: 120px !important;
width: fit-content !important;
min-width: 120px !important;
padding: 0;

Expand All @@ -279,7 +279,7 @@ const pageLogo = computed(() => {

.item {
position: relative;
padding-left: 12px;
padding: 0 12px;
height: 40px;
display: flex;
align-items: center;
Expand All @@ -298,7 +298,7 @@ const pageLogo = computed(() => {

&::after {
content: '';
width: 112px;
width: calc(100% - 8px);
height: 32px;
border-radius: 4px;
position: absolute;
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/views/system/embedded/DsCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ const handlePublic = () => {
box-shadow: 0px 4px 8px 0px #1f23291a;
border-radius: 4px;
border: 1px solid #dee0e3;
width: 120px !important;
width: fit-content !important;
min-width: 120px !important;
padding: 0;
.content {
Expand All @@ -231,7 +231,7 @@ const handlePublic = () => {
}
.item {
position: relative;
padding-left: 12px;
padding: 0 12px;
height: 40px;
display: flex;
align-items: center;
Expand All @@ -248,7 +248,7 @@ const handlePublic = () => {

&::after {
content: '';
width: 112px;
width: calc(100% - 8px);
height: 32px;
border-radius: 4px;
position: absolute;
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/views/system/workspace/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -869,7 +869,7 @@ const handleCurrentChange = (val: number) => {
box-shadow: 0px 4px 8px 0px #1f23291a;
border-radius: 4px;
border: 1px solid #dee0e3;
width: 120px !important;
width: fit-content !important;
min-width: 120px !important;
padding: 0;
.content {
Expand All @@ -885,7 +885,7 @@ const handleCurrentChange = (val: number) => {
}
.item {
position: relative;
padding-left: 12px;
padding: 0 12px;
height: 40px;
display: flex;
align-items: center;
Expand All @@ -902,7 +902,7 @@ const handleCurrentChange = (val: number) => {

&::after {
content: '';
width: 112px;
width: calc(100% - 8px);
height: 32px;
border-radius: 4px;
position: absolute;
Expand Down