Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
minerva
frontend
Commits
c29a7336
Commit
c29a7336
authored
1 year ago
by
Tadeusz Miesiąc
Browse files
Options
Downloads
Plain Diff
Merge branch 'development' of
https://gitlab.lcsb.uni.lu/minerva/frontend
into development
parents
67b8e99c
3929aba8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!223
reset the pin numbers before search results are fetch (so the results will be...
Pipeline
#78490
passed
1 year ago
Changes
22
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/styles/index.css
+45
-0
45 additions, 0 deletions
src/styles/index.css
tailwind.config.ts
+5
-10
5 additions, 10 deletions
tailwind.config.ts
with
50 additions
and
10 deletions
src/styles/index.css
0 → 100644
+
45
−
0
View file @
c29a7336
@import
'contrib/normalize.css'
;
@import
'tailwindcss/base'
;
@import
'tailwindcss/components'
;
@import
'tailwindcss/utilities'
;
*,
::after
,
::before
{
box-sizing
:
border-box
;
}
html
{
font-size
:
16px
;
}
body
{
@apply
bg-white;
font-size
:
100%
;
-moz-osx-font-smoothing
:
grayscale
;
-webkit-font-smoothing
:
antialiased
;
}
a
{
@apply
no-underline;
}
ul
{
list-style
:
none
;
margin
:
0
0
0
0
;
padding
:
0
;
}
/* This is needed to reverse the CSS normalisation Tailwind applies. Ideally we can remove this
pretty soon though.
*/
img
,
svg
,
video
,
canvas
,
audio
,
iframe
,
embed
,
object
{
display
:
inline
;
}
This diff is collapsed.
Click to expand it.
tailwind.config.ts
+
5
−
10
View file @
c29a7336
import
type
{
Config
}
from
'
tailwindcss
'
import
type
{
Config
}
from
'
tailwindcss
'
;
const
config
:
Config
=
{
content
:
[
'
./src/pages/**/*.{js,ts,jsx,tsx,mdx}
'
,
'
./src/components/**/*.{js,ts,jsx,tsx,mdx}
'
,
'
./src/app/**/*.{js,ts,jsx,tsx,mdx}
'
,
],
content
:
[
'
./src/**/*.ts
'
,
'
./src/**/*.tsx
'
],
theme
:
{
extend
:
{
backgroundImage
:
{
'
gradient-radial
'
:
'
radial-gradient(var(--tw-gradient-stops))
'
,
'
gradient-conic
'
:
'
conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))
'
,
'
gradient-conic
'
:
'
conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))
'
,
},
},
},
plugins
:
[],
}
export
default
config
}
;
export
default
config
;
This diff is collapsed.
Click to expand it.
Prev
1
2
Next
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment