irc_web/.svn/pristine/aa/aa3b2bf9647b151c8193dbcbc77...

38 lines
601 B
Plaintext

<template>
<div id="app">
<router-view />
</div>
</template>
<script>
export default {
name: 'App'
}
</script>
<style lang="scss">
.el-tooltip__popper{
max-width: 400px;
}
.my_multiple{
.el-input--medium .el-input__inner{
height: 36px!important;
}
.el-select__tags{
flex-wrap: nowrap;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
display: block;
}
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none !important;
}
input[type="number"] {
-moz-appearance: textfield !important;
}
</style>