SearchResultLayout.module.scss 772 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. @use '~/styles/variables' as var;
  2. @use '@growi/core/scss/bootstrap/init' as bs;
  3. .on-search :global {
  4. .page-wrapper {
  5. height: 100vh;
  6. }
  7. .search-control-include-options {
  8. .card-body {
  9. padding: 5px 10px;
  10. }
  11. }
  12. .search-result-list {
  13. .search-result-keyword {
  14. font-size: 17.5px;
  15. font-weight: bold;
  16. }
  17. .search-result-select-group {
  18. > select {
  19. max-width: 8rem;
  20. }
  21. }
  22. // list group
  23. .page-list {
  24. // not show top label in search result list
  25. .page-list-meta {
  26. .top-label {
  27. display: none;
  28. }
  29. }
  30. }
  31. }
  32. .search-result-content {
  33. .search-result-content-body-container {
  34. .wiki {
  35. margin-top: 2em;
  36. font-size: 14px;
  37. }
  38. }
  39. }
  40. }