ErrorLayout.razor.less 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. @import '~antd/es/style/themes/default.less';
  2. .container__b__0 {
  3. display: flex;
  4. flex-direction: column;
  5. height: 100vh;
  6. overflow: auto;
  7. background: @layout-body-background;
  8. .lang {
  9. width: 100%;
  10. height: 40px;
  11. line-height: 44px;
  12. text-align: right;
  13. :global(.ant-dropdown-trigger) {
  14. margin-right: 24px;
  15. }
  16. }
  17. .content {
  18. flex: 1;
  19. padding: 32px 0;
  20. }
  21. .top {
  22. text-align: center;
  23. }
  24. .header {
  25. height: 44px;
  26. line-height: 44px;
  27. a {
  28. text-decoration: none;
  29. }
  30. }
  31. .logo {
  32. height: 44px;
  33. margin-right: 16px;
  34. vertical-align: top;
  35. }
  36. .title {
  37. position: relative;
  38. top: 2px;
  39. color: @heading-color;
  40. font-weight: 600;
  41. font-size: 33px;
  42. font-family: Avenir, 'Helvetica Neue', Arial, Helvetica, sans-serif;
  43. }
  44. .desc {
  45. margin-top: 12px;
  46. margin-bottom: 40px;
  47. color: @text-color-secondary;
  48. font-size: @font-size-base;
  49. }
  50. }
  51. @media (min-width: @screen-md-min) {
  52. .container__b__0 {
  53. background-image: url('https://gw.alipayobjects.com/zos/rmsportal/TVYTbAXWheQpRcWDaDMu.svg');
  54. background-repeat: no-repeat;
  55. background-position: center 110px;
  56. background-size: 100%;
  57. .content {
  58. padding: 32px 0 24px;
  59. }
  60. }
  61. }