* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    border: 0;
    -webkit-touch-callout: none;
    /* -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;

    -webkit-tap-highlight-color: transparent;

    text-size-adjust: 100%;
    box-sizing: border-box;
    outline: none;
}
*:not(input, textarea) {
    -webkit-touch-callout: none;
    /* -webkit-user-select: none;
    user-select: none; */
}
input,
textarea {
    -webkit-user-select: text;
    user-select: text;
    appearance: none;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    touch-action: none;
    background-color: #f3f3f5;
    scrollbar-width: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
}
#app {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
}
#app::-webkit-scrollbar {
    display: none;
}

.createCode {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    background-color: #fff;
    border: solid 8px #fff;
    margin: auto;
}
.createCode canvas,
.createCode img {
    width: 100%;
    height: 100%;
    display: block;
}
