admin.css
3 years ago
admin.js
3 years ago
block-editor.css
3 years ago
index.php
3 years ago
notice.css
3 years ago
notice.css
28 lines
| 1 | /* Notice style */ |
| 2 | .pgcu-dashboard-notice{ |
| 3 | background: #fff; |
| 4 | display: flex; |
| 5 | align-items: center; |
| 6 | justify-content: space-between; |
| 7 | margin-top: 40px; |
| 8 | width: calc(100% - 53px); |
| 9 | border: 1px solid #c3c4c7; |
| 10 | box-shadow: 0 1px 1px rgb(0 0 0 / 4%); |
| 11 | padding: 10px 15px; |
| 12 | position: relative; |
| 13 | } |
| 14 | .pgcu-dashboard-notice:before{ |
| 15 | position: absolute; |
| 16 | content: ''; |
| 17 | width: 3px; |
| 18 | height: calc(100% + 2px); |
| 19 | background: #834eff; |
| 20 | left: -1px; |
| 21 | top:-1px; |
| 22 | } |
| 23 | .pgcu-dashboard-notice p{ |
| 24 | margin: 0; |
| 25 | } |
| 26 | .pgcu-dashboard-notice a{ |
| 27 | text-decoration: none; |
| 28 | } |