Skip to content

Commit e96b55c

Browse files
committed
Renamed Flags.css and added custom styling Toasts
1 parent 2ce5f51 commit e96b55c

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

src/app/components/SocketHandler.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { SOCKET_BASE_URL } from 'app/../config/config';
2+
import 'app/styles/ReactToastNotifications.css';
23
import * as SocketHandlerInterfaces from 'app/types/SocketHandler';
34
import * as React from 'react';
45
import { useToasts } from 'react-toast-notifications';

src/app/components/UserProfileModal/EditProfile.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as styles1 from 'app/styles/Authentication.module.css';
2-
import 'app/styles/Flags.css';
2+
import 'app/styles/ReactFlagsSelect.css';
33
import * as styles from 'app/styles/UserProfileModal.module.css';
44
import { Avatar } from 'app/types/Authentication/Register';
55
import { InputName } from 'app/types/UserProfileModal';

src/app/styles/Flags.css renamed to src/app/styles/ReactFlagsSelect.css

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* Overriding react-flag-select package styles */
12
.flag-select {
23
align-items: center !important;
34
width: 100% !important;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/* Overriding the react-toast-notifications package-styles */
2+
.react-toast-notifications__container {
3+
overflow: hidden !important;
4+
}

0 commit comments

Comments
 (0)