Repo for the search and displace core module including the interface to select files and search and displace operations to run on them. https://searchanddisplace.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.1 KiB

3 years ago
3 years ago
  1. @import '~primeflex/src/_variables';
  2. @import '~primeflex/src/_grid';
  3. @import '~primeflex/src/_formlayout';
  4. @import '~primeflex/src/_display';
  5. @import '~primeflex/src/_text';
  6. @import '~primeflex/src/flexbox/_flexbox';
  7. @import '~primeflex/src/_spacing';
  8. @import '~primeflex/src/_elevation';
  9. // @import '~primevue/resources/themes/fluent-light/theme.css';
  10. // @import '~primevue/resources/themes/vela-green/theme.css';
  11. @import '~primevue/resources/themes/mdc-light-indigo/theme.css';
  12. // @import '~primevue/resources/themes/mdc-dark-indigo/theme.css';
  13. @import '~primevue/resources/primevue.min.css';
  14. @import '~primeicons/primeicons.css';
  15. @import 'layout';
  16. body {
  17. height: 100%;
  18. margin: 0;
  19. background: #f8f9fa;
  20. }
  21. #app {
  22. font-family: Avenir, Helvetica, Arial, sans-serif;
  23. -webkit-font-smoothing: antialiased;
  24. -moz-osx-font-smoothing: grayscale;
  25. text-align: center;
  26. color: #2c3e50;
  27. display: flex;
  28. flex-direction: column;
  29. min-height: 100vh;
  30. }
  31. #nav {
  32. padding: 30px;
  33. a {
  34. font-weight: bold;
  35. color: #2c3e50;
  36. &.router-link-exact-active {
  37. color: #42b983;
  38. }
  39. }
  40. }