@rtsee/ngx 0.0.58 → 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 +4 -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 +17 -1
  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 +10 -2
  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 +6 -3
  11. package/projects/ngx/src/lib/components/rtsee-auth/sign-in/sign-in.component.html +67 -29
  12. package/projects/ngx/src/lib/components/rtsee-auth/sign-in/sign-in.component.ts +94 -22
  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 +5 -0
  15. package/projects/ngx/src/lib/components/rtsee-auth/types/auth-form.type.ts +4 -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 +14 -6
  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 -1
  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,12 +1,11 @@
1
1
  import {Component, Input} from '@angular/core';
2
- import {RTSee, INavigationConfig} from "@rtsee/factory";
3
- import {NgClass, NgIf} from "@angular/common";
4
- import {RtseeSidenavComponent} from "./rtsee-sidenav/rtsee-sidenav.component";
2
+ import {RTSee, INavigationConfig, IRouteConfig} from "@rtsee/factory";
3
+ import {NgClass} from "@angular/common";
5
4
  import {RTSeeConferenceComponent} from "../rtsee/rtsee-conference.component";
6
5
  import {MessengerComponent} from "../rtsee-messenger/messenger/messenger.component";
7
6
  import {RtseeEventsDashboardComponent} from "../rtsee-events-dashboard/rtsee-events-dashboard.component";
8
7
  import {PresentationComponent} from "../rtsee-presentation/presentation/presentation.component";
9
- import {RtseeBottomNavComponent} from "./rtsee-bottom-nav/rtsee-bottom-nav.component";
8
+ import {RtseeNavComponent} from "./rtsee-nav/rtsee-nav.component";
10
9
 
11
10
 
12
11
  @Component({
@@ -14,19 +13,17 @@ import {RtseeBottomNavComponent} from "./rtsee-bottom-nav/rtsee-bottom-nav.compo
14
13
  templateUrl: './rtsee-container.component.html',
15
14
  imports: [
16
15
  NgClass,
17
- NgIf,
18
- RtseeSidenavComponent,
19
16
  RTSeeConferenceComponent,
20
17
  MessengerComponent,
21
18
  RtseeEventsDashboardComponent,
22
19
  PresentationComponent,
23
- RtseeBottomNavComponent
20
+ RtseeNavComponent
24
21
  ],
25
22
  standalone: true
26
23
  })
27
24
  export class RTSeeContainerComponent {
28
25
  @Input() rtsee!: RTSee;
29
- @Input() public navigationConfig!: INavigationConfig;
26
+ @Input() public navigationConfig!: INavigationConfig<IRouteConfig>;
30
27
 
31
28
  isSidenavExpanded: boolean = true;
32
29
  isSidenavExpandededed: boolean = true;
@@ -0,0 +1,25 @@
1
+ <div class="rtsee-nav">
2
+ @if (config.siteLogo) {
3
+ <div class="rtsee-site-logo">
4
+ <p-image [src]="config.siteLogo.src" class="rtsee-site-logo-image"></p-image>
5
+ <p-divider class="rtsee-site-logo-divider" />
6
+ </div>
7
+ }
8
+ <div class="rtsee-nav-bar">
9
+ @for (route of config.routes; track route.name) {
10
+ <a [routerLink]="route.link"
11
+ routerLinkActive="rtsee-nav-item-active"
12
+ [ngClass]="{'rtsee-nav-item-hidden': !route.isEnabled || !route.iconClassName}"
13
+ [routerLinkActiveOptions]="{ exact: route.exactActiveLinkMatcher || false }"
14
+ class="rtsee-nav-item"
15
+ >
16
+ <span [ngClass]="route.iconClassName"
17
+ class="rtsee-nav-item-icon" >
18
+ </span>
19
+ </a>
20
+ }
21
+ <p-avatar [image]="'https://primefaces.org/cdn/primeng/images/demo/avatar/amyelsner.png'"
22
+ class="rtsee-nav-item rtsee-nav-image rtsee-nav-profile"
23
+ ></p-avatar>
24
+ </div>
25
+ </div>
@@ -0,0 +1,26 @@
1
+ import {Component, Input} from '@angular/core';
2
+ import {INavigationConfig} from "@rtsee/factory/dist/factory/src/interfaces/NavigationConfig";
3
+ import {RouterLink, RouterLinkActive} from "@angular/router";
4
+ import {NgClass} from "@angular/common";
5
+ import {IRouteConfig} from "@rtsee/factory/src/interfaces/NavigationConfig";
6
+ import {Avatar} from "primeng/avatar";
7
+ import {Image} from "primeng/image";
8
+ import {Divider} from "primeng/divider";
9
+
10
+
11
+ @Component({
12
+ selector: 'rtsee-nav',
13
+ templateUrl: './rtsee-nav.component.html',
14
+ imports: [
15
+ RouterLink,
16
+ RouterLinkActive,
17
+ NgClass,
18
+ Avatar,
19
+ Image,
20
+ Divider
21
+ ],
22
+ standalone: true
23
+ })
24
+ export class RtseeNavComponent {
25
+ @Input() public config!: INavigationConfig<IRouteConfig>;
26
+ }
@@ -3,22 +3,23 @@
3
3
  <rtsee-presentation-header [presentation]="presentation"
4
4
  ></rtsee-presentation-header>
5
5
  </div>
6
- <div class="rtsee-presentation-stories-list"
7
- *ngIf="!presentation.activeStory"
8
- >
9
- <div class="rtsee-presentation-story-thumbnail-container"
10
- *ngFor="let story of presentation.stories"
11
- (click)="presentation.setActiveStory(story)"
12
- >
13
- <rtsee-story-thumbnail
14
- [story]="story"
15
- ></rtsee-story-thumbnail>
6
+ @if (!presentation.activeStory) {
7
+ <div class="rtsee-presentation-stories-list">
8
+ @for (story of presentation.stories; track story.id) {
9
+ <div class="rtsee-presentation-story-thumbnail-container"
10
+ (click)="presentation.setActiveStory(story)"
11
+ >
12
+ <rtsee-story-thumbnail
13
+ [story]="story"
14
+ ></rtsee-story-thumbnail>
15
+ </div>
16
+ }
16
17
  </div>
17
- </div>
18
- <div class="rtsee-presentation-story-viewer-container"
19
- *ngIf="presentation.activeStory"
20
- >
21
- <rtsee-story-player [story]="presentation.activeStory"
22
- ></rtsee-story-player>
23
- </div>
18
+ }
19
+ @if (presentation.activeStory) {
20
+ <div class="rtsee-presentation-story-viewer-container">
21
+ <rtsee-story-player [story]="presentation.activeStory"
22
+ ></rtsee-story-player>
23
+ </div>
24
+ }
24
25
  </div>
@@ -1,7 +1,6 @@
1
1
  import {Component, Input} from '@angular/core';
2
2
  import { RTSeePresentation } from "@rtsee/presentation";
3
3
  import {PresentationHeaderComponent} from "../presentation-header/presentation-header.component";
4
- import {NgForOf, NgIf} from "@angular/common";
5
4
  import {StoryThumbnailComponent} from "../story-thumbnail/story-thumbnail.component";
6
5
  import {StoryPlayerComponent} from "../story-player/story-player.component";
7
6
 
@@ -10,7 +9,6 @@ import {StoryPlayerComponent} from "../story-player/story-player.component";
10
9
  templateUrl: './presentation.component.html',
11
10
  imports: [
12
11
  PresentationHeaderComponent,
13
- NgIf,
14
12
  StoryThumbnailComponent,
15
13
  StoryPlayerComponent
16
14
  ],
@@ -1,29 +1,33 @@
1
1
  <div class="rtsee-presentation-slide">
2
- <ng-template *ngIf="slide.widget" widgetHost></ng-template>
2
+ @if (slide.widget) {
3
+ <ng-template widgetHost></ng-template>
4
+ }
3
5
  <div class="rtsee-presentation-slide-default">
4
- <div class="rtsee-presentation-slide-image-container"
5
- [ngStyle]="" ]="{'background-image': 'url(' + slide.imageUrl + ')'}"
6
- *ngIf="slide.imageUrl"
7
- >
8
- </div>
6
+ @if (slide.imageUrl) {
7
+ <div class="rtsee-presentation-slide-image-container"
8
+ [ngStyle]="{'background-image': 'url(' + slide.imageUrl + ')'}"
9
+ >
10
+ </div>
11
+ }
9
12
  <div class="rtsee-presentation-slide-text">
10
13
  <p>{{slide.text}}</p>
11
14
  </div>
12
15
  <div class="rtsee-presentation-slide-controls">
13
- <button class="slide-navigation-btn navigation-prev"
14
- (click)="slideRewindClicked(false)"
15
- *ngIf="story.activeSlideNumber !== 1"
16
- >
17
- <span class="rtsee-story-thumbnail-info-time-icon material-icons-outlined"
18
- >arrow_back_ios</span>
19
- </button>
20
- <button class="slide-navigation-btn navigation-next"
21
- (click)="slideRewindClicked(true)"
22
- *ngIf="story.activeSlideNumber !== this.story.totalSlides"
23
- >
16
+ @if (story.activeSlideNumber !== 1) {
17
+ <button class="slide-navigation-btn navigation-prev"
18
+ (click)="slideRewindClicked(false)"
19
+ >
20
+ <span class="rtsee-story-thumbnail-info-time-icon material-icons-outlined">arrow_back_ios</span>
21
+ </button>
22
+ }
23
+ @if (story.activeSlideNumber !== this.story.totalSlides) {
24
+ <button class="slide-navigation-btn navigation-next"
25
+ (click)="slideRewindClicked(true)"
26
+ >
24
27
  <span class="rtsee-story-thumbnail-info-time-icon material-icons-outlined"
25
28
  >arrow_forward_ios</span>
26
- </button>
29
+ </button>
30
+ }
27
31
  </div>
28
32
  </div>
29
33
  </div>
@@ -1,13 +1,14 @@
1
- import { Component, EventEmitter, Input, Output } from '@angular/core';
1
+ import { Component, Input } from '@angular/core';
2
2
  import {RTSeeStory, RTSeeStorySlide} from "@rtsee/presentation";
3
- import {NgIf, NgStyle} from "@angular/common";
3
+ import { NgStyle } from "@angular/common";
4
+ import {WidgetDirective} from "../../../directives/widget.directive";
4
5
 
5
6
  @Component({
6
7
  selector: 'rtsee-slide',
7
8
  templateUrl: './slide.component.html',
8
9
  imports: [
9
10
  NgStyle,
10
- NgIf
11
+ WidgetDirective
11
12
  ],
12
13
  standalone: true
13
14
  })
@@ -42,13 +42,23 @@ import { SignInComponent } from "./components/rtsee-auth/sign-in/sign-in.compone
42
42
  import { ForgotPasswordComponent } from "./components/rtsee-auth/forgot-password/forgot-password.component";
43
43
  import { VendorsComponent } from "./components/rtsee-auth/vendors/vendors.component";
44
44
  import { RTSeeAuthComponent } from './components/rtsee-auth/auth/auth.component';
45
- import { RtseeSidenavComponent } from './components/rtsee-container/rtsee-sidenav/rtsee-sidenav.component';
46
- import { RtseeBottomNavComponent } from './components/rtsee-container/rtsee-bottom-nav/rtsee-bottom-nav.component';
47
45
  import { RouterLink, RouterLinkActive } from "@angular/router";
48
46
  import { ResetPasswordComponent } from './components/rtsee-auth/reset-password/reset-password.component';
49
47
  import { PresentationHeaderComponent } from './components/rtsee-presentation/presentation-header/presentation-header.component';
48
+ import { NgxCaptchaModule } from "ngx-captcha";
49
+ import { provideAnimationsAsync } from "@angular/platform-browser/animations/async";
50
+ import { providePrimeNG } from "primeng/config";
51
+ import Aura from '@primeuix/themes/aura';
50
52
 
51
53
  @NgModule({
54
+ providers: [
55
+ provideAnimationsAsync(),
56
+ providePrimeNG({
57
+ theme: {
58
+ preset: Aura
59
+ }
60
+ })
61
+ ],
52
62
  declarations: [],
53
63
  imports: [
54
64
  RTSeeAuthComponent,
@@ -80,7 +90,6 @@ import { PresentationHeaderComponent } from './components/rtsee-presentation/pre
80
90
  RtseePeerComponent,
81
91
  RtseeSoundbarComponent,
82
92
  RtseeSettingsComponent,
83
- RtseeSidenavComponent,
84
93
  MessengerHeaderComponent,
85
94
  ChatsListComponent,
86
95
  ProfileComponent,
@@ -92,7 +101,6 @@ import { PresentationHeaderComponent } from './components/rtsee-presentation/pre
92
101
  StoryPlayerComponent,
93
102
  SlideComponent,
94
103
  StoryThumbnailComponent,
95
- RtseeBottomNavComponent,
96
104
  PresentationHeaderComponent,
97
105
  CommonModule,
98
106
  ReactiveFormsModule,
@@ -102,6 +110,7 @@ import { PresentationHeaderComponent } from './components/rtsee-presentation/pre
102
110
  NgOptimizedImage,
103
111
  RouterLink,
104
112
  RouterLinkActive,
113
+ NgxCaptchaModule
105
114
  ],
106
115
  exports: [
107
116
  RTSeeConferenceComponent,
@@ -113,7 +122,6 @@ import { PresentationHeaderComponent } from './components/rtsee-presentation/pre
113
122
  ],
114
123
  schemas: [
115
124
  CUSTOM_ELEMENTS_SCHEMA,
116
- ],
117
-
125
+ ]
118
126
  })
119
127
  export class RTSeeModule {}
@@ -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";