Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

code.scss 1.0 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
  1. /* Code style overrides
  2. ------------------------------------------------------------------------------*/
  3. .markdown-body .highlight pre,
  4. .markdown-body pre {
  5. margin-top: 10px;
  6. }
  7. .height-constrained-code-block pre {
  8. max-height: 500px;
  9. overflow: auto;
  10. }
  11. .markdown-body .code-extra {
  12. margin-top: $spacer-4;
  13. pre {
  14. margin-top: 0 !important;
  15. border-top-left-radius: 0 !important;
  16. border-top-right-radius: 0 !important;
  17. border-left: 1px var(--color-auto-gray-2) solid !important;
  18. border-bottom: 1px var(--color-auto-gray-2) solid !important;
  19. border-right: 1px var(--color-auto-gray-2) solid !important;
  20. }
  21. }
  22. /* code styles */
  23. pre .redbox {
  24. border: 2px solid var(--color-auto-red-5);
  25. padding: 2px;
  26. border-radius: 2px;
  27. margin-right: 2px;
  28. }
  29. pre .greenbox {
  30. border: 2px solid var(--color-auto-green-5);
  31. padding: 2px;
  32. border-radius: 2px;
  33. margin-right: 2px;
  34. }
  35. pre .bluebox {
  36. border: 2px solid var(--color-auto-blue-5);
  37. padding: 2px;
  38. border-radius: 2px;
  39. margin-right: 2px;
  40. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...