Nav apraksta

index.less 482B

1234567891011121314151617181920212223242526272829303132
  1. .baseWrapper {
  2. position: relative;
  3. :global(.bf-container) {
  4. display: flex;
  5. flex-direction: column;
  6. .controlBar {
  7. box-shadow: none;
  8. }
  9. .editorContent {
  10. border: 1px solid #ccc;
  11. border-radius: 4px;
  12. height: auto;
  13. transition: border-color 0.3s;
  14. &.focus {
  15. border-color: #1790ff;
  16. }
  17. }
  18. }
  19. .floatControls {
  20. position: absolute;
  21. right: 15px;
  22. bottom: 15px;
  23. display: flex;
  24. z-index: 2;
  25. }
  26. }