index.less 747 Bytes
Newer Older
wuhao's avatar
wuhao committed
1 2 3 4

.qrcode{
    width: 1000px;
    display: block;
wuhao's avatar
wuhao committed
5
    overflow: inherit !important;
wuhao's avatar
wuhao committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
    ul{
        display: flex;
        height: 500px;
        border: 4px solid #dadada;
        background-color: #ffffff;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        list-style: none;
        >li:first-child{
            flex: 1;
            padding: 50px 0;
            display: flex;
            flex-direction: column;
            font-size: 36px;
            padding-left: 24px;
            justify-content: space-between;
            p{
                margin: 0;
            }
        }
        >li:last-child{
            width: 400px;
            height: 400px;
            padding: 75px 50px 50px 0;
        }
    }

}