Skip to content

Commit 680d781

Browse files
committed
feat: wip-experimentations
1 parent dfd2cff commit 680d781

File tree

7 files changed

+340
-292
lines changed

7 files changed

+340
-292
lines changed

frontend/tailwind.config.js

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
/** @type {import('tailwindcss').Config} */
22
module.exports = {
3-
content: ['./web/**/*.{js,ts,jsx,tsx}', './common/**/*.{js,ts,jsx,tsx}'],
3+
content: [
4+
'./web/components/**/*.{js,ts,jsx,tsx}',
5+
'./web/pages/**/*.{js,ts,jsx,tsx}',
6+
'./common/components/**/*.{js,ts,jsx,tsx}',
7+
],
48
corePlugins: {
59
preflight: false, // This allows to fix the headers by avoiding the default tailwind reset
610
},
@@ -42,12 +46,12 @@ module.exports = {
4246
'primary-16': 'rgba(149, 108, 255, 0.16)',
4347
'primary-24': 'rgba(149, 108, 255, 0.24)',
4448
'primary-32': 'rgba(149, 108, 255, 0.32)',
45-
'white-16': 'rgba(255, 255, 255, 0.16)',
4649
'primary-8': 'rgba(149, 108, 255, 0.08)',
50+
'white-16': 'rgba(255, 255, 255, 0.16)',
4751
'white-24': 'rgba(255, 255, 255, 0.24)',
4852
'white-32': 'rgba(255, 255, 255, 0.32)',
49-
'white-8': 'rgba(255, 255, 255, 0.08)',
5053
'white-48': 'rgba(255, 255, 255, 0.48)',
54+
'white-8': 'rgba(255, 255, 255, 0.08)',
5155
},
5256

5357
// Background colors
@@ -133,6 +137,7 @@ module.exports = {
133137

134138
// Text colors
135139
text: {
140+
DEFAULT: '#FF0000',
136141
'icon-grey': '#656d7b',
137142
'icon-light': '#ffffff',
138143
'icon-light-grey': 'rgba(157, 164, 174, 1)',

frontend/web/components/navigation/TabMenu/Tabs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ const Tabs: React.FC<TabsProps> = ({
170170
</div>
171171
{overflow.length > 0 && !isMeasuring && (
172172
<div
173-
className='d-flex align-items-center justify-content-center ms-2 flex-shrink-0'
173+
className='d-flex align-items-center justify-content-center ms-2 flex-shrink-0 btn btn-secondary'
174174
style={{
175175
backgroundColor: 'var(--bs-light300)',
176176
borderRadius: 6,

frontend/web/components/navigation/navbars/OrganisationNavbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const OrganisationNavbar: FC<OrganisationNavType> = ({}) => {
1616
gap={3}
1717
key={AccountStore.getOrganisation()?.id}
1818
containerClassName='px-2 pb-1 pb-md-0 pb-mb-0 bg-faint'
19-
className='py-0 d-flex'
19+
className='py-0 flex'
2020
>
2121
<NavSubLink
2222
icon={apps}

frontend/web/components/pages/UsersAndPermissionsPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ const UsersAndPermissionsInner: FC<UsersAndPermissionsInnerType> = ({
160160
json={users}
161161
/>
162162
<JSONReference title={'Invite Links'} json={inviteLinks} />
163-
163+
<p>yolo</p>
164164
<FormGroup className='mt-4'>
165165
<div className='col-md-8'>
166166
<h5 className='mb-2'>Manage Users and Permissions</h5>

0 commit comments

Comments
 (0)