theme.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. :root {
  2. --primary-color: #198CFE;
  3. }
  4. * {
  5. margin : 0;
  6. padding : 0;
  7. box-sizing: border-box;
  8. }
  9. img {
  10. -webkit-touch-callout: none;
  11. }
  12. body {
  13. user-select: none;
  14. }
  15. g,
  16. path {
  17. outline: 0;
  18. }
  19. /* 用来标记音符数据的 */
  20. .abcjs-annotation {
  21. display: none;
  22. }
  23. .abcjs-download-midi {
  24. display: none;
  25. }
  26. .deleteDialog {
  27. width: 400px !important;
  28. display: flex;
  29. flex-direction: column;
  30. border-radius: 12px;
  31. min-height : 190px;
  32. }
  33. .deleteDialog.n-dialog .n-dialog__title {
  34. justify-content: center;
  35. font-weight: 600;
  36. font-size: 16px;
  37. padding-right: 0 !important;
  38. }
  39. .deleteDialog.n-dialog .n-dialog__icon {
  40. display: none;
  41. }
  42. .deleteDialog.n-dialog .n-dialog__action {
  43. margin-top: auto;
  44. justify-content: center;
  45. }
  46. .deleteDialog.n-dialog .n-dialog__action .n-button{
  47. width: 117px;
  48. height: 35px;
  49. line-height: 35px;
  50. border-radius: 18px;
  51. }
  52. .deleteDialog.n-dialog .n-dialog__content{
  53. flex: 1;
  54. display: flex;
  55. align-items: center;
  56. justify-content: center;
  57. }