Skip to content

Commit

Permalink
Updated UI to match designs
Browse files Browse the repository at this point in the history
  • Loading branch information
ianvexler committed Feb 26, 2024
1 parent 35a98fc commit 32342ad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scss/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$primary: #6A955B;
$dark-primary: #415a38;
$secondary: #E5E5E5;
$secondary: #f2f2f2;
$dark-secondary: #838383;
$info: #3B7BD9;
$dark-info: #244C86;
Expand Down
2 changes: 1 addition & 1 deletion src/components/userProfile/UserProfile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const UserProfile = ({ className, ...rest }: UserProfileProps) => {
className={`${className} d-inline-flex align-items-center text-muted`}
{...rest}
>
<i className="user-profile bi bi-person-circle fs-2" />
<i className="user-profile pt-2 bi bi-person-circle fs-2" />
</div>
);
};
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import NavItem from './components/nav/components/NavItem';
import Nav from './components/nav/Nav';
import Subtitle from './components/subtitle/Subtitle';
import Layout from './components/layout/Layout';
import Tabs from 'components/tabs/Tabs';
import Tabs from './components/tabs/Tabs';
import '../scss/texmo-react-components.scss';

export {
Expand Down

0 comments on commit 32342ad

Please sign in to comment.