Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

locationbar.scss 641B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .dc-location-bar {
  2. position: absolute;
  3. left: 270px;
  4. bottom: 2px;
  5. font-size: 14px;
  6. color: rgb(255, 255, 255);
  7. background: rgba(0, 0, 0, 0.6);
  8. padding: 2px 5px;
  9. border-radius: 2px;
  10. user-select: none;
  11. display: flex;
  12. .mouse-bar, .camera-bar ,.ms-bar,.fps-bar{
  13. display: flex;
  14. span {
  15. margin: 0 8px;
  16. }
  17. }
  18. .mouse-bar {
  19. span {
  20. min-width: 140px;
  21. }
  22. span:nth-of-type(3) {
  23. min-width: 120px;
  24. }
  25. }
  26. .camera-bar {
  27. span{
  28. min-width: 90px;
  29. }
  30. span:nth-of-type(2) {
  31. min-width: 145px;
  32. }
  33. }
  34. .ms-bar,.fps-bar {
  35. span {
  36. min-width: 70px;
  37. }
  38. }
  39. }