@rtsee/ngx 0.0.57 → 0.0.59

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/package.json +10 -7
  3. package/projects/ngx/src/lib/common/interfaces/index.ts +1 -0
  4. package/projects/ngx/src/lib/common/interfaces/server-errors.ts +5 -0
  5. package/projects/ngx/src/lib/components/rtsee-auth/auth/auth.component.html +14 -10
  6. package/projects/ngx/src/lib/components/rtsee-auth/auth/auth.component.ts +28 -2
  7. package/projects/ngx/src/lib/components/rtsee-auth/forgot-password/forgot-password.component.html +1 -1
  8. package/projects/ngx/src/lib/components/rtsee-auth/forgot-password/forgot-password.component.ts +12 -5
  9. package/projects/ngx/src/lib/components/rtsee-auth/reset-password/reset-password.component.ts +6 -2
  10. package/projects/ngx/src/lib/components/rtsee-auth/services/auth.service.ts +40 -0
  11. package/projects/ngx/src/lib/components/rtsee-auth/sign-in/sign-in.component.html +66 -28
  12. package/projects/ngx/src/lib/components/rtsee-auth/sign-in/sign-in.component.ts +96 -20
  13. package/projects/ngx/src/lib/components/rtsee-auth/sign-up/sign-up.component.html +1 -1
  14. package/projects/ngx/src/lib/components/rtsee-auth/sign-up/sign-up.component.ts +18 -2
  15. package/projects/ngx/src/lib/components/rtsee-auth/types/auth-form.type.ts +3 -3
  16. package/projects/ngx/src/lib/components/rtsee-container/rtsee-container.component.html +25 -29
  17. package/projects/ngx/src/lib/components/rtsee-container/rtsee-container.component.ts +5 -8
  18. package/projects/ngx/src/lib/components/rtsee-container/rtsee-nav/rtsee-nav.component.html +25 -0
  19. package/projects/ngx/src/lib/components/rtsee-container/rtsee-nav/rtsee-nav.component.ts +26 -0
  20. package/projects/ngx/src/lib/components/rtsee-presentation/presentation/presentation.component.html +18 -17
  21. package/projects/ngx/src/lib/components/rtsee-presentation/presentation/presentation.component.ts +0 -2
  22. package/projects/ngx/src/lib/components/rtsee-presentation/slide/slide.component.html +22 -18
  23. package/projects/ngx/src/lib/components/rtsee-presentation/slide/slide.component.ts +4 -3
  24. package/projects/ngx/src/lib/ngx.module.ts +17 -9
  25. package/projects/ngx/src/lib/theme/auth/auth-container.scss +189 -177
  26. package/projects/ngx/src/lib/theme/auth/index.scss +0 -1
  27. package/projects/ngx/src/lib/theme/auth/variables.scss +1 -64
  28. package/projects/ngx/src/lib/theme/common-variables.scss +1 -0
  29. package/projects/ngx/src/lib/theme/containers/index.scss +2 -2
  30. package/projects/ngx/src/lib/theme/containers/nav-item.scss +84 -55
  31. package/projects/ngx/src/lib/theme/containers/nav.scss +86 -0
  32. package/projects/ngx/src/lib/theme/containers/shell.scss +22 -31
  33. package/projects/ngx/src/lib/theme/containers/variables.scss +10 -1
  34. package/projects/ngx/src/lib/theme/forms/common.scss +51 -0
  35. package/projects/ngx/src/lib/theme/forms/index.scss +1 -0
  36. package/projects/ngx/src/lib/theme/forms/variables.scss +8 -0
  37. package/projects/ngx/src/lib/theme/styles.scss +1 -0
  38. package/tsconfig.json +2 -5
  39. package/projects/ngx/src/lib/components/rtsee-container/rtsee-bottom-nav/rtsee-bottom-nav.component.html +0 -15
  40. package/projects/ngx/src/lib/components/rtsee-container/rtsee-bottom-nav/rtsee-bottom-nav.component.ts +0 -20
  41. package/projects/ngx/src/lib/components/rtsee-container/rtsee-sidenav/rtsee-sidenav.component.html +0 -32
  42. package/projects/ngx/src/lib/components/rtsee-container/rtsee-sidenav/rtsee-sidenav.component.ts +0 -26
  43. package/projects/ngx/src/lib/theme/auth/auth.scss +0 -0
  44. package/projects/ngx/src/lib/theme/containers/bottom-nav.scss +0 -15
  45. package/projects/ngx/src/lib/theme/containers/sidenav.scss +0 -125
@@ -1,186 +1,198 @@
1
1
  @import "./variables";
2
2
  @import "../common-variables";
3
3
 
4
- .auth-container {
5
- max-width: $max-width-container;
6
- margin: $btn-margin-top auto;
7
- padding: $auth-container-padding;
8
- text-align: center;
9
- background: linear-gradient(to bottom, $light-blue-gray 0%, $white 100%);
10
- border-radius: $auth-container-border-radius;
4
+ .rtsee-auth {
5
+ min-height: 100vh;
6
+ display: flex;
7
+ flex-direction: column;
8
+ justify-content: center;
9
+ align-items: center;
11
10
 
12
- .auth-logo {
13
- width: $auth-logo-width;
14
- height: $auth-logo-height;
15
- margin-bottom: $logo-bottom-margin;
16
- border-radius: $auth-container-border-radius;
17
- }
18
-
19
- .auth-title {
20
- margin-bottom: $auth-title-text-margin-bottom;
21
- font-size: $auth-title-text-font-size;
22
- font-weight: bold;
23
- color: $dark-blue-gray;
24
- text-shadow: $auth-title-text-shadow;
25
- }
26
-
27
- .auth-title-description {
28
- margin: $auth-title-description-text-margin;
29
- font-size: $auth-title-description-text-font-size;
30
- color: $medium-blue-gray;
31
- }
32
-
33
- .auth-form {
34
- padding: $form-padding;
35
- display: flex;
36
- flex-direction: column;
37
- align-items: center;
38
- border-radius: $auth-container-border-radius;
39
- background-color: $white;
40
- box-shadow: $auth-form-box-shadow;
41
-
42
- .auth-input-container {
43
- width: 100%;
44
- margin-bottom: $input-bottom-margin;
45
-
46
- input {
47
- width: 100%;
48
- padding: $auth-form-input-padding;
49
- border: $auth-form-input-border;
50
- border-radius: $auth-container-border-radius;
51
- font-size: $auth-title-description-text-font-size;
52
-
53
- &:focus {
54
- border-color: $dark-blue-gray;
55
- outline: none;
56
- box-shadow: $auth-form-input-focus-shadow;
57
- }
58
- }
59
- }
60
-
61
- .auth-sm-medium {
62
- margin-bottom: $label-bottom-margin;
63
- font-size: $auth-sm-medium-font-side;
64
- color: $dark-blue-gray;
65
- }
66
-
67
- .auth-options {
68
- display: flex;
69
- justify-content: space-between;
70
- width: 100%;
71
- align-items: center;
72
- margin: $auth-options-margin;
73
-
74
- .auth-checkbox-label {
75
- display: flex;
76
- align-items: center;
77
-
78
- .auth-remember-checkbox {
79
- margin-right: $auth-options-remember-check-box-margin;
80
- accent-color: $dark-blue-gray;
81
- }
82
-
83
- label {
84
- font-size: $auth-sm-medium-font-side;
85
- color: $dark-blue-gray;
86
- }
87
- }
88
-
89
- a {
90
- font-size: $auth-sm-medium-font-side;
91
- color: $deep-blue;
92
- text-decoration: none;
93
-
94
- &:hover {
95
- text-decoration: underline;
96
- }
97
- }
98
- }
99
-
100
- .auth-btn-container {
101
- width: 100%;
102
- padding: $auth-button-padding;
103
- text-align: center;
104
- font-size: $auth-button-font-size;
105
- background-color: $deep-blue;
106
- color: $white;
107
- border: none;
108
- border-radius: $auth-button-border-radius;
109
- cursor: pointer;
110
- transition: $auth-button-transition;
111
-
112
- &:hover {
113
- background-color: darken($deep-blue, 10%);
114
- }
115
-
116
- &:disabled {
117
- background-color: $medium-blue-gray;
118
- cursor: not-allowed;
119
- box-shadow: none;
120
- transform: none;
121
- }
122
- }
123
- }
124
-
125
- .auth-media-blue-gray-sm-normal {
126
- margin-top: $auth-new-account-text-margin;
127
- font-size: $auth-new-account-text-font-size;
128
- color: $medium-blue-gray;
129
-
130
- .auth-deep-blue-sm-medium {
131
- text-decoration: none;
132
- color: $deep-blue;
133
-
134
- &:hover {
135
- text-decoration: underline;
136
- opacity: 0.8;
137
- }
138
- }
11
+ .auth-container {
12
+ max-width: 420px;
139
13
  }
140
14
  }
141
15
 
142
- /* Mobile Styles */
143
- @media (max-width: 480px) {
144
- .auth-container {
145
- padding: $auth-container-mobile-padding;
146
-
147
- .auth-form {
148
- padding: $auth-form-mobile-padding;
149
16
 
150
- .auth-input-container {
151
- margin-bottom: $auth-input-container-mobile-margin;
152
17
 
153
- input {
154
- padding: $auth-input-mobile-padding;
155
- font-size: $auth-mobile-font-size;
156
- }
157
- }
158
-
159
- .auth-btn-container {
160
- padding: $auth-button-container-mobile-padding;
161
- font-size: $auth-mobile-font-size;
162
- }
163
-
164
- .auth-options {
165
- flex-direction: column;
166
- align-items: flex-start;
167
-
168
- .auth-checkbox-label {
169
- margin-bottom: $auth-check-box-label-mobile-margin;
170
- }
171
-
172
- a {
173
- font-size: $auth-mobile-font-size;
174
- }
175
- }
176
- }
177
-
178
- .auth-media-blue-gray-sm-normal {
179
- font-size: $auth-mobile-font-size;
180
-
181
- .auth-deep-blue-sm-medium {
182
- font-size: $auth-mobile-font-size;
183
- }
184
- }
185
- }
186
- }
18
+ //.auth-container {
19
+ // max-width: $max-width-container;
20
+ // margin: $btn-margin-top auto;
21
+ // padding: $rts-offset-md;
22
+ // background: linear-gradient(to bottom, $light-blue-gray 0%, $white 100%);
23
+ // border-radius: $rts-default-border-radius;
24
+ //
25
+ // .auth-logo {
26
+ // width: $auth-logo-width;
27
+ // height: $auth-logo-height;
28
+ // border-radius: $rts-default-border-radius;
29
+ // }
30
+ //
31
+ // .auth-title {
32
+ // margin-bottom: $auth-title-text-margin-bottom;
33
+ // font-size: $auth-title-text-font-size;
34
+ // font-weight: bold;
35
+ // color: $dark-blue-gray;
36
+ // text-shadow: $auth-title-text-shadow;
37
+ // }
38
+ //
39
+ // .auth-title-description {
40
+ // margin: $auth-title-description-text-margin;
41
+ // font-size: $auth-title-description-text-font-size;
42
+ // color: $medium-blue-gray;
43
+ // }
44
+ //
45
+ // .auth-form {
46
+ // padding: $rts-offset-md;
47
+ // display: flex;
48
+ // flex-direction: column;
49
+ // align-items: center;
50
+ // border-radius: $rts-default-border-radius;
51
+ // background-color: $white;
52
+ // box-shadow: $auth-form-box-shadow;
53
+ //
54
+ // .auth-input-container {
55
+ // width: 100%;
56
+ // margin-bottom: $input-bottom-margin;
57
+ //
58
+ // input {
59
+ // width: 100%;
60
+ // padding: $auth-form-input-padding;
61
+ // border: $auth-form-input-border;
62
+ // border-radius: $rts-default-border-radius;
63
+ // font-size: $auth-title-description-text-font-size;
64
+ //
65
+ // &:focus {
66
+ // border-color: $dark-blue-gray;
67
+ // outline: none;
68
+ // box-shadow: $auth-form-input-focus-shadow;
69
+ // }
70
+ // }
71
+ // }
72
+ //
73
+ // .auth-sm-medium {
74
+ // margin-bottom: $label-bottom-margin;
75
+ // font-size: $auth-sm-medium-font-side;
76
+ // color: $dark-blue-gray;
77
+ // }
78
+ //
79
+ // .auth-options {
80
+ // display: flex;
81
+ // justify-content: space-between;
82
+ // width: 100%;
83
+ // align-items: center;
84
+ // margin: $auth-options-margin;
85
+ //
86
+ // .auth-checkbox-label {
87
+ // display: flex;
88
+ // align-items: center;
89
+ //
90
+ // .auth-remember-checkbox {
91
+ // margin-right: $auth-options-remember-check-box-margin;
92
+ // accent-color: $dark-blue-gray;
93
+ // }
94
+ //
95
+ // label {
96
+ // font-size: $auth-sm-medium-font-side;
97
+ // color: $dark-blue-gray;
98
+ // }
99
+ // }
100
+ //
101
+ // a {
102
+ // font-size: $auth-sm-medium-font-side;
103
+ // color: $deep-blue;
104
+ // text-decoration: none;
105
+ //
106
+ // &:hover {
107
+ // text-decoration: underline;
108
+ // }
109
+ // }
110
+ // }
111
+ //
112
+ // .auth-btn-container {
113
+ // width: 100%;
114
+ // padding: $auth-button-padding;
115
+ // text-align: center;
116
+ // font-size: $auth-button-font-size;
117
+ // background-color: $deep-blue;
118
+ // color: $white;
119
+ // border: none;
120
+ // border-radius: $auth-button-border-radius;
121
+ // cursor: pointer;
122
+ // transition: $auth-button-transition;
123
+ //
124
+ // &:hover {
125
+ // background-color: darken($deep-blue, 10%);
126
+ // }
127
+ //
128
+ // &:disabled {
129
+ // background-color: $medium-blue-gray;
130
+ // cursor: not-allowed;
131
+ // box-shadow: none;
132
+ // transform: none;
133
+ // }
134
+ // }
135
+ // }
136
+ //
137
+ // .auth-media-blue-gray-sm-normal {
138
+ // margin-top: $auth-new-account-text-margin;
139
+ // font-size: $auth-new-account-text-font-size;
140
+ // color: $medium-blue-gray;
141
+ //
142
+ // .auth-deep-blue-sm-medium {
143
+ // text-decoration: none;
144
+ // color: $deep-blue;
145
+ //
146
+ // &:hover {
147
+ // text-decoration: underline;
148
+ // opacity: 0.8;
149
+ // }
150
+ // }
151
+ // }
152
+ //}
153
+ //
154
+ ///* Mobile Styles */
155
+ //@media (max-width: 480px) {
156
+ // .auth-container {
157
+ // padding: $auth-container-mobile-padding;
158
+ //
159
+ // .auth-form {
160
+ // padding: $auth-form-mobile-padding;
161
+ //
162
+ // .auth-input-container {
163
+ // margin-bottom: $auth-input-container-mobile-margin;
164
+ //
165
+ // input {
166
+ // padding: $auth-input-mobile-padding;
167
+ // font-size: $auth-mobile-font-size;
168
+ // }
169
+ // }
170
+ //
171
+ // .auth-btn-container {
172
+ // padding: $auth-button-container-mobile-padding;
173
+ // font-size: $auth-mobile-font-size;
174
+ // }
175
+ //
176
+ // .auth-options {
177
+ // flex-direction: column;
178
+ // align-items: flex-start;
179
+ //
180
+ // .auth-checkbox-label {
181
+ // margin-bottom: $auth-check-box-label-mobile-margin;
182
+ // }
183
+ //
184
+ // a {
185
+ // font-size: $auth-mobile-font-size;
186
+ // }
187
+ // }
188
+ // }
189
+ //
190
+ // .auth-media-blue-gray-sm-normal {
191
+ // font-size: $auth-mobile-font-size;
192
+ //
193
+ // .auth-deep-blue-sm-medium {
194
+ // font-size: $auth-mobile-font-size;
195
+ // }
196
+ // }
197
+ // }
198
+ //}
@@ -1,2 +1 @@
1
- @import "./auth";
2
1
  @import "./auth-container";
@@ -1,64 +1 @@
1
- $light-blue-gray: #e6edf2;
2
- $white: #FFFFFF;
3
- $dark-blue-gray: #101828;
4
- $medium-blue-gray: #667085;
5
- $light-gray: #E4E7EC;
6
- $deep-blue: #175CD3;
7
-
8
-
9
- $logo-bottom-margin: 24px;
10
- $label-bottom-margin: 8px;
11
- $input-bottom-margin: 20px;
12
- $form-padding: 40px;
13
- $btn-margin-top: 16px;
14
- $max-width-container: 440px;
15
- $standard-border-radius: 10px;
16
- $logo-margin-bottom: 24px;
17
- $input-margin-bottom: 20px;
18
-
19
-
20
-
21
- $auth-container-padding: 96px 24px;
22
- $auth-container-border-radius: 8px;
23
- $auth-logo-width: 64px;
24
- $auth-logo-height: 64px;
25
- $auth-title-text-margin-bottom: 16px;
26
- $auth-title-text-font-size: 24px;
27
- $auth-title-text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
28
- $auth-title-description-text-margin: 0 0 40px;
29
- $auth-title-description-text-font-size: 14px;
30
-
31
- $auth-form-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
32
- $auth-form-input-focus-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
33
-
34
- $auth-options-margin: 16px 0 24px;
35
- $auth-options-remember-check-box-margin: 10px;
36
-
37
-
38
- $auth-button-padding: 12px;
39
- $auth-button-font-size: 14px;
40
- $auth-button-border-radius: 8px;
41
- $auth-button-transition: background-color 0.3s;
42
-
43
- $auth-new-account-text-margin: 24px;
44
- $auth-new-account-text-font-size: 14px;
45
-
46
- $auth-sm-medium-font-side: 12px;
47
- $auth-form-input-padding: 12px;
48
- $auth-form-input-border: 1px solid $light-gray;
49
-
50
- // auth mobile
51
-
52
- $auth-container-mobile-padding: 48px 16px;
53
- $auth-form-mobile-padding: 20px;
54
- $auth-input-container-mobile-margin: 16px;
55
- $auth-input-mobile-padding: 10px;
56
- $auth-mobile-font-size: 12px;
57
- $auth-button-container-mobile-padding: 10px;
58
- $auth-check-box-label-mobile-margin: 8px;
59
-
60
-
61
-
62
-
63
-
64
-
1
+ $rtsee-auth-background: #fff;
@@ -3,6 +3,7 @@ $rts-offset-md: 16px;
3
3
  $rts-offset-lg: 24px;
4
4
 
5
5
  $rts-header-height: 65px;
6
+ $rts-sidebar-width: 75px;
6
7
 
7
8
  $rts-default-border-radius: 8px;
8
9
  $rts-rounded-border-radius: 16px;
@@ -1,4 +1,4 @@
1
1
  @import "./shell";
2
- @import "./sidenav";
2
+ @import "./nav";
3
3
  @import "./nav-item";
4
- @import "./bottom-nav";
4
+
@@ -1,70 +1,99 @@
1
1
  @import "./variables";
2
2
 
3
- .rtsee-nav-item {
4
- display: flex;
5
- height: $nav-item-height;
6
- line-height: $nav-item-height;
7
- cursor: pointer;
8
- position: relative;
9
- color: $nav-font-color;
10
- font-size: 14px;
11
- text-decoration: none;
12
- overflow: hidden;
13
-
14
- .rtsee-nav-item-icon {
15
- position: relative;
16
- display: flex;
17
- justify-content: center;
18
- align-items: center;
19
- width: 100%;
20
- max-height: 100%;
21
- color: $icon-color;
22
- font-size: $nav-icon-size;
23
- left: 0;
24
- top: 0;
25
- text-align: center;
26
-
27
- .material-icons, .material-icons-outlined {
28
- vertical-align: middle;
29
- font-size: 30px;
30
- }
3
+ .rtsee-shell {
4
+ .rtsee-nav {
5
+ .rtsee-nav-item {
6
+ display: flex;
7
+ height: $nav-item-height;
8
+ width: $nav-item-width;
9
+ line-height: $nav-item-height;
10
+ cursor: pointer;
11
+ position: relative;
12
+ color: $nav-icon-color;
13
+ font-size: 14px;
14
+ text-decoration: none;
15
+ overflow: hidden;
16
+ flex-direction: column;
17
+ justify-content: center;
18
+ border-radius: $nav-icon-border-radius;
31
19
 
32
- .rtsee-nav-icon-img {
33
- height: $new-nav-icon-size;
34
- }
35
- }
20
+ &.rtsee-nav-image {
21
+ border-radius: 50%;
22
+ outline: 3px solid transparent;
23
+ }
24
+
25
+ .rtsee-nav-item-icon {
26
+ position: relative;
27
+ display: flex;
28
+ justify-content: center;
29
+ align-items: center;
30
+ width: 100%;
31
+ max-height: 100%;
32
+ color: $icon-color;
33
+ font-size: $nav-icon-size;
34
+ left: 0;
35
+ top: 0;
36
+ text-align: center;
37
+
38
+ .material-icons, .material-icons-outlined {
39
+ vertical-align: middle;
40
+ font-size: 30px;
41
+ }
36
42
 
37
- .mat-badge-medium {
38
- &.mat-badge-below, &.mat-badge-overlap.mat-badge-after {
39
- .mat-badge-content {
40
- bottom: 20px;
41
- right: 10px;
43
+ .rtsee-nav-icon-img {
44
+ height: $new-nav-icon-size;
45
+ }
42
46
  }
43
- }
44
- }
45
47
 
46
- .rtsee-nav-item-name {
47
- display: none;
48
- }
48
+ .mat-badge-medium {
49
+ &.mat-badge-below, &.mat-badge-overlap.mat-badge-after {
50
+ .mat-badge-content {
51
+ bottom: 20px;
52
+ right: 10px;
53
+ }
54
+ }
55
+ }
49
56
 
50
- &:hover, &.active {
51
- color: $active-font-color;
52
- background-color: $active-bg-color;
57
+ .rtsee-nav-item-name {
58
+ display: none;
59
+ }
53
60
 
54
- .rtsee-nav-item-icon {
55
- color: $active-font-color;
56
- }
57
- }
61
+ &.rtsee-nav-item-hidden {
62
+ display: none;
63
+ }
64
+
65
+ &:hover {
66
+ background-color: $nav-icon-background-hover-color;
67
+ outline-color: $nav-icon-background-hover-color;
68
+ }
58
69
 
59
- .rtsee-nav-link {
60
- background-color: #ffffff;
70
+ &.rtsee-nav-item-active {
71
+ color: $nav-icon-color-active;
72
+ background-color: $nav-icon-background-active-color;
73
+ outline-color: $nav-icon-background-active-color;
61
74
 
62
- &.active {
63
- color: $active-font-color;
75
+ .rtsee-nav-item-icon {
76
+ color: $nav-icon-color-active;
77
+ }
78
+ }
64
79
 
65
- .rtsee-nav-item-icon {
66
- color: $active-font-color;
80
+ .rtsee-nav-link {
81
+ background-color: #ffffff;
82
+
83
+ &.active {
84
+ color: $active-font-color;
85
+
86
+ .rtsee-nav-item-icon {
87
+ color: $active-font-color;
88
+ }
89
+ }
90
+ }
91
+
92
+ @media screen and (min-width: $rts-break-md) {
93
+ flex-direction: row;
67
94
  }
68
95
  }
69
96
  }
70
97
  }
98
+
99
+
@@ -0,0 +1,86 @@
1
+ @import "./variables";
2
+
3
+ .rtsee-nav-block {
4
+ .rtsee-nav {
5
+ background-color: $sidenav-bg-color;
6
+ width: 100%;
7
+ position: relative;
8
+ padding: $rts-offset-md;
9
+
10
+ .rtsee-site-logo {
11
+ display: none;
12
+
13
+ .rtsee-site-logo-image {
14
+ display: block;
15
+ width: $nav-item-width;
16
+ height: $nav-item-height;
17
+
18
+ img {
19
+ width: 100%;
20
+ }
21
+ }
22
+
23
+ .rtsee-site-logo-divider {
24
+ margin: 0;
25
+ padding: $rts-offset-md 0;
26
+ }
27
+ }
28
+
29
+ .rtsee-nav-bar {
30
+ display: flex;
31
+ flex-direction: row;
32
+ justify-content: space-around;
33
+ }
34
+
35
+ &.rtsee-sidenav-expanded {
36
+ .rtsee-sidenav-body {
37
+ .rtsee-nav-items {
38
+ .rtsee-nav-item {
39
+ padding-left: $nav-icon-block-width;
40
+
41
+ .rtsee-nav-item-name {
42
+ display: block;
43
+ }
44
+
45
+ .rtsee-nav-item-icon {
46
+ position: absolute;
47
+ height: $nav-item-height;
48
+ width: $nav-icon-block-width;
49
+ }
50
+ }
51
+ }
52
+ }
53
+
54
+ .rtsee-sidenav-toggle {
55
+ cursor: w-resize;
56
+ }
57
+ }
58
+ }
59
+
60
+ @media screen and (min-width: $rts-break-md) {
61
+ .rtsee-nav {
62
+ width: auto;
63
+ height: 100%;
64
+
65
+ .rtsee-site-logo {
66
+ display: block;
67
+ }
68
+
69
+ .rtsee-nav-bar {
70
+ display: flex;
71
+ flex-direction: column;
72
+ justify-content: space-around;
73
+ gap: $rts-offset-md;
74
+
75
+ .rtsee-nav-profile {
76
+ position: absolute;
77
+ bottom: $rts-offset-md
78
+ }
79
+ }
80
+ }
81
+ }
82
+ }
83
+
84
+
85
+
86
+