File size: 1,686 Bytes
9d6cc86
 
 
ea9ca44
 
 
 
 
 
9d6cc86
ea9ca44
 
 
 
 
 
 
 
 
 
 
9d6cc86
ea9ca44
 
 
 
 
 
 
 
6e5bfbf
 
 
 
 
 
 
 
 
 
9d6cc86
 
 
 
6e5bfbf
 
 
 
 
 
 
 
 
9d6cc86
 
 
6e5bfbf
 
9d6cc86
 
 
 
 
 
6e5bfbf
 
9d6cc86
 
 
 
 
 
6e5bfbf
9d6cc86
6e5bfbf
9d6cc86
 
6e5bfbf
 
 
9d6cc86
6e5bfbf
9d6cc86
 
 
 
 
6e5bfbf
9d6cc86
6e5bfbf
ea9ca44
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
body,
html,
#root {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

body {
  margin: 0;
}

/* ===============================
   Dark Select Dropdown (IRIS)
   =============================== */

.dark-select {
  background-color: #111827;
  color: rgb(51, 8, 8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem;
  border-radius: 0.5rem;
  color-scheme: dark;
}

.dark-select option {
  background-color: #111827;
  color: rgb(4, 42, 31);
}

/* ===============================
   Scrollbar Utilities
   =============================== */
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* ===============================
   Print Styles for Resume Builder
   =============================== */
@media print {
  body * {
    visibility: hidden;
  }

  .resume-print-area,
  .resume-print-area * {
    visibility: visible;
  }

  /* Force ancestors to be static so absolute positioning aligns to the page */
  body, html, #root, .no-print-bg {
    position: static !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hide-scrollbar {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    overflow: visible !important;
    display: block !important;
  }

  .resume-print-area {
    position: relative !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: none !important;
    box-shadow: none !important;
    background-color: white !important;
  }

  .no-print {
    display: none !important;
  }

  @page {
    margin: 0;
  }
}