index.less 552 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. @import '../../app.less';
  2. .g-button-wrapper {
  3. display: inline-block;
  4. .g-button {
  5. display: inline-block;
  6. text-align: center;
  7. }
  8. }
  9. .g-button-wrapper.block {
  10. display: block;
  11. text-align: center;
  12. .g-button {
  13. display: block;
  14. }
  15. }
  16. .g-button-wrapper.basic {
  17. .g-button {
  18. line-height: 36px;
  19. }
  20. }
  21. .g-button-wrapper.basic.radius {
  22. .g-button {
  23. border-radius: 18px;
  24. }
  25. }
  26. .g-button-wrapper.default {
  27. .g-button {
  28. background: #41A6F3;
  29. color: #fff;
  30. }
  31. .g-button.touch {
  32. background: darken(#41A6F3, 10)
  33. }
  34. }