| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- :root {
- --primary-color: #198CFE;
- }
- * {
- margin : 0;
- padding : 0;
- box-sizing: border-box;
- }
- img {
- -webkit-touch-callout: none;
- }
- body {
- user-select: none;
- }
- g,
- path {
- outline: 0;
- }
- /* 用来标记音符数据的 */
- .abcjs-annotation {
- display: none;
- }
- .abcjs-download-midi {
- display: none;
- }
- .deleteDialog {
- display: flex;
- flex-direction: column;
- border-radius: 12px;
- min-height : 178px;
- }
- .deleteDialog.n-dialog .n-dialog__title {
- justify-content: center;
- font-weight: 600;
- font-size: 16px;
- }
- .deleteDialog.n-dialog .n-dialog__icon {
- display: none;
- }
- .deleteDialog.n-dialog .n-dialog__action {
- margin-top: auto;
- justify-content: center;
- }
- .deleteDialog.n-dialog .n-dialog__action .n-button{
- width: 117px;
- height: 35px;
- line-height: 35px;
- border-radius: 18px;
- }
- .deleteDialog.n-dialog .n-dialog__content{
- flex: 1;
- display: flex;
- align-items: center;
- justify-content: center;
- }
|