custom.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. // Copyright 2019 Hackware SpA <human@hackware.cl>
  2. // This file is part of "Hackware Userland" and licensed under the terms
  3. // of the GNU Affero General Public License version 3, or (at your option)
  4. // a later version. You should have received a copy of this license along
  5. // with the software. If not, see <https://www.gnu.org/licenses/>.
  6. // node_modules/bootstrap/scss added to includePaths in vue.config.js
  7. // Required
  8. // "functions" and "variables" already imported in vue.config.js
  9. @import "functions";
  10. $enable-rounded: false;
  11. $enable-shadows: true;
  12. $enable-transitions: true;
  13. $enable-responsive-font-sizes: true;
  14. $enable-deprecation-messages: true;
  15. $dark: #212529;
  16. @import "variables";
  17. @import "mixins";
  18. // Optional
  19. @import "root";
  20. @import "reboot";
  21. @import "type";
  22. @import "images";
  23. @import "code";
  24. @import "grid";
  25. @import "tables";
  26. @import "forms";
  27. @import "buttons";
  28. @import "transitions";
  29. @import "dropdown";
  30. @import "button-group";
  31. @import "input-group";
  32. @import "custom-forms";
  33. @import "nav";
  34. @import "navbar";
  35. @import "card";
  36. @import "breadcrumb";
  37. @import "pagination";
  38. @import "badge";
  39. @import "jumbotron";
  40. @import "alert";
  41. @import "progress";
  42. @import "media";
  43. @import "list-group";
  44. @import "close";
  45. @import "toasts";
  46. @import "modal";
  47. @import "tooltip";
  48. @import "popover";
  49. @import "carousel";
  50. @import "spinners";
  51. @import "utilities";
  52. @import "print";
  53. :focus { outline:none; }
  54. ::-moz-focus-inner { border:0; }