全屏的时候不会出现圆角边框
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { ref } from 'vue'
|
import { ref } from 'vue'
|
||||||
const emit = defineEmits(['close'])
|
const emit = defineEmits(['close', 'maximize'])
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
theme: {
|
theme: {
|
||||||
@@ -159,6 +159,9 @@ const getDimensionValue = (value, dimension) => {
|
|||||||
.modal-container.maximized .modal-maximize-btn::before {
|
.modal-container.maximized .modal-maximize-btn::before {
|
||||||
content: "\f422";
|
content: "\f422";
|
||||||
}
|
}
|
||||||
|
.modal-container.maximized {
|
||||||
|
border-radius: 0 !important;
|
||||||
|
}
|
||||||
.modal-header-buttons:hover .modal-close-btn::before,
|
.modal-header-buttons:hover .modal-close-btn::before,
|
||||||
.modal-header-buttons:hover .modal-maximize-btn::before {
|
.modal-header-buttons:hover .modal-maximize-btn::before {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
|
|||||||
Reference in New Issue
Block a user