Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Dokumentation
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FIT-Connect
Dokumentation
Merge requests
!237
645_Button_fuer_Antrag_auf_Teilnahme_Informationstermine(
planning#645
)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
645_Button_fuer_Antrag_auf_Teilnahme_Informationstermine(
planning#645
)
645_Button_fuer_Antrag_auf_Teilnahme_Informationstermine
into
main
Overview
0
Commits
23
Pipelines
0
Changes
5
Merged
Michael Haidner
requested to merge
645_Button_fuer_Antrag_auf_Teilnahme_Informationstermine
into
main
2 years ago
Overview
0
Commits
23
Pipelines
0
Changes
5
Expand
0
0
Merge request reports
Compare
main
version 24
80bcab94
2 years ago
version 23
2d0a15ef
2 years ago
version 22
523913c5
2 years ago
version 21
a4cc7b83
2 years ago
version 20
2e57058f
2 years ago
version 19
8e465f44
2 years ago
version 18
d744d34f
2 years ago
version 17
9a0d86dd
2 years ago
version 16
746892f8
2 years ago
version 15
6c26799e
2 years ago
version 14
8355960f
2 years ago
version 13
0a532154
2 years ago
version 12
40d0476f
2 years ago
version 11
28af8ca8
2 years ago
version 10
734456e4
2 years ago
version 9
25ad86cd
2 years ago
version 8
1bff68a2
2 years ago
version 7
3d5851bb
2 years ago
version 6
5246b2c3
2 years ago
version 5
3e2b0667
2 years ago
version 4
297d082f
2 years ago
version 3
9ff23d2c
2 years ago
version 2
3a3c03cf
2 years ago
version 1
e507aaae
2 years ago
main (base)
and
version 14
latest version
b39f1be7
23 commits,
2 years ago
version 24
80bcab94
22 commits,
2 years ago
version 23
2d0a15ef
21 commits,
2 years ago
version 22
523913c5
21 commits,
2 years ago
version 21
a4cc7b83
20 commits,
2 years ago
version 20
2e57058f
19 commits,
2 years ago
version 19
8e465f44
18 commits,
2 years ago
version 18
d744d34f
17 commits,
2 years ago
version 17
9a0d86dd
16 commits,
2 years ago
version 16
746892f8
15 commits,
2 years ago
version 15
6c26799e
14 commits,
2 years ago
version 14
8355960f
13 commits,
2 years ago
version 13
0a532154
12 commits,
2 years ago
version 12
40d0476f
11 commits,
2 years ago
version 11
28af8ca8
10 commits,
2 years ago
version 10
734456e4
9 commits,
2 years ago
version 9
25ad86cd
10 commits,
2 years ago
version 8
1bff68a2
9 commits,
2 years ago
version 7
3d5851bb
8 commits,
2 years ago
version 6
5246b2c3
6 commits,
2 years ago
version 5
3e2b0667
5 commits,
2 years ago
version 4
297d082f
4 commits,
2 years ago
version 3
9ff23d2c
3 commits,
2 years ago
version 2
3a3c03cf
2 commits,
2 years ago
version 1
e507aaae
1 commit,
2 years ago
5 files
+
86
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
src/components/BannerTermine.jsx
0 → 100644
+
15
−
0
Options
import
React
from
'
react
'
;
import
useBaseUrl
from
'
@docusaurus/useBaseUrl
'
export
default
function
BannerTermine
({
children
})
{
const
bgSource
=
useBaseUrl
(
'
/images/banner.svg
'
)
return
<
div
className
=
{
'
flex
'
}
>
<
div
className
=
{
'
w-screen bg-repeat-x bg-yellow-400 max-w-screen
'
}
style
=
{
{
backgroundImage
:
`url('
${
bgSource
}
')`
,
margin
:
'
0 -9999rem
'
,
padding
:
'
2rem 9999rem
'
}
}
>
</
div
>
<
div
className
=
{
'
flex p-8 gap-8
'
}
style
=
{
{
width
:
"
100%
"
}
}
>
{
children
}
</
div
>
</
div
>
}
\ No newline at end of file
Loading