123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /* @import "../../../weui/components/weui-wxss/dist/style/weui.wxss"; */
- @import "./assets/iconfont.wxss";
- page>view {
- max-width: 100%;
- }
- .container {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- }
- .ql-container {
- box-sizing: border-box;
- width: 100%;
- height: 100%;
- font-size: 16px;
- line-height: 1.5;
- overflow: auto;
- padding: 10px 10px 20px 10px;
- border: 1px solid #ECECEC;
- -webkit-overflow-scrolling: touch; /* 惯性滚动 */
- }
- .ql-active {
- color: #22C704;
- }
- .iconfont {
- display: inline-block;
- width: 30px;
- height: 30px;
- cursor: pointer;
- font-size: 20px;
- }
- .toolbar {
- box-sizing: border-box;
- padding: 0 10px;
- height: 50px;
- width: 100%;
- position: fixed;
- left: 0;
- right: 100%;
- bottom: 0;
- display: flex;
- align-items: center;
- justify-content: space-between;
- border: 1px solid #ECECEC;
- border-left: none;
- border-right: none;
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- }
|