sub.scss 508 B

1234567891011121314151617181920212223242526272829303132
  1. // Fonts
  2. @use "common/font";
  3. // Variables
  4. @use 'variables';
  5. // Bootstrap
  6. @use 'bootstrap/scss/bootstrap';
  7. // Common
  8. @use 'common/reset';
  9. // 로그인
  10. @use 'common/auth/login';
  11. // 회원가입
  12. @use 'common/auth/register';
  13. // 비밀번호 재설정, 변경 처리
  14. @use 'common/auth/passwords';
  15. // 이메일 주소 확인
  16. @use 'common/auth/verify';
  17. // Jquery-ui
  18. @import url('jquery-ui/themes/base/all.css');
  19. @import url('jquery-ui/themes/base/datepicker.css');
  20. body {
  21. background-color: #f0f0f0;
  22. }