canvas.acss 465 B

1234567891011121314151617181920212223242526272829
  1. .canvas-element {
  2. width: auto;
  3. align-self: stretch;
  4. height: 400rpx;
  5. }
  6. .canvas-buttons {
  7. padding: 50rpx 50rpx 10rpx;
  8. border-top: 1px solid #ccc;
  9. display: flex;
  10. flex-grow: 1;
  11. overflow-y: scroll;
  12. flex-direction: row;
  13. flex-wrap: wrap;
  14. align-self: stretch;
  15. height: 400rpx;
  16. box-sizing: border-box;
  17. }
  18. .canvas-button {
  19. font-size: 28rpx;
  20. width: 290rpx;
  21. margin: 20rpx auto;
  22. }
  23. .canvas-button-reset {
  24. width: 610rpx;
  25. margin: 20rpx auto;
  26. }