Commit ebd5f2224ab226278135e78336b5f6f756febbf0

Authored by xp.Huang
2 parents caac905d efa84269

Merge branch 'fix/remove-console' into 'main_dev'

fix: 移除无用页面

See merge request yunteng/thingskit-front!1101
1   -<!DOCTYPE html>
2   -<html lang="en">
3   - <head>
4   - <meta charset="UTF-8" />
5   - <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6   - <title>Document</title>
7   - <style>
8   - body {
9   - padding: 50px;
10   - }
11   -
12   - section {
13   - width: 20px;
14   - height: 100px;
15   - overflow: hidden;
16   - display: flex;
17   - flex-direction: column;
18   - justify-content: center;
19   - }
20   -
21   - div {
22   - width: 20px;
23   - height: 50px;
24   - position: relative;
25   - background-color: aqua;
26   - border-top-right-radius: 10px;
27   - border-bottom-right-radius: 10px;
28   - }
29   -
30   - div::before {
31   - position: absolute;
32   - width: 20px;
33   - height: 30px;
34   - top: -28px;
35   - left: 0;
36   - content: '';
37   - pointer-events: none;
38   - border-radius: 0 0 0 15px;
39   - box-shadow: -10px 0 0 0 aqua;
40   - }
41   - </style>
42   - </head>
43   -
44   - <body>
45   - <section>
46   - <div> </div>
47   - </section>
48   - </body>
49   -</html>