Whether iview can be applied to large screen

1. The maximum screen size originally set by the project is 1920 to 1080, but just changed the demand to put on the big screen, the font of the page on the big screen became illegible, the basic font 16px, and finally adopted px2remLoader, but the proportion of the page could not be adjusted well, and the internal px of iview was not easy to adjust. Is there any similar situation, or friends who use iview on the big screen to discuss

Apr.24,2022

iview adapts itself and can be used on a large screen. If you can't see the font clearly, just write the style and overwrite the font style of iview. The iview font size defaults to 14px. Just modify it. For example,

.ivu-input,
.ivu-form-item-label,
.ivu-dropdown-menu .ivu-dropdown-item,
.ivu-select .ivu-select-item,
.ivu-select-input,
.ivu-select-placeholder,
.ivu-select-selected-value,
.ivu-table td,
th .ivu-table-cell,
.ivu-btn>span,
span.ivu-date-picker-cells-cell em,
.ivu-date-picker-header-label,
.ivu-date-picker-cells-header span,
.ivu-radio-wrapper{
    font-size: 16px !important;
}
Menu