Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
boco-frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
idatt2106_2022_02
boco-frontend
Commits
ade82207
Commit
ade82207
authored
2 years ago
by
Gilgard
Browse files
Options
Downloads
Patches
Plain Diff
theme
parent
a6fbbc39
No related branches found
Branches containing commit
No related tags found
1 merge request
!71
Theme
Pipeline
#178807
failed
2 years ago
Stage: test
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/components/BaseComponents/ColoredButton.vue
+1
-1
1 addition, 1 deletion
src/components/BaseComponents/ColoredButton.vue
src/components/BaseComponents/NavBar.vue
+1
-1
1 addition, 1 deletion
src/components/BaseComponents/NavBar.vue
tailwind.config.js
+25
-1
25 additions, 1 deletion
tailwind.config.js
with
27 additions
and
3 deletions
src/components/BaseComponents/ColoredButton.vue
+
1
−
1
View file @
ade82207
<
template
>
<button
class=
"block text-white bg-
blue-700 hover:bg-blue-800
focus:ring-4 focus:outline-none focus:ring-
blue-300
font-medium rounded-lg text-sm px-5 py-2.5 text-center dark:bg-
blue-600
dark:hover:bg-
blue-700
dark:focus:ring-
blue-800
"
class=
"block text-white bg-
primary-medium hover:bg-primary-dark
focus:ring-4 focus:outline-none focus:ring-
primary-light
font-medium rounded-lg text-sm px-5 py-2.5 text-center dark:bg-
primary-medium
dark:hover:bg-
primary-dark
dark:focus:ring-
primary-light
"
>
{{
text
}}
</button>
...
...
This diff is collapsed.
Click to expand it.
src/components/BaseComponents/NavBar.vue
+
1
−
1
View file @
ade82207
<
template
>
<nav
class=
"flex items-center justify-between
bg-white
h-14 border-1 border-b border-gray-300 border-solid sticky top-0 z-50"
class=
"flex items-center
bg-white
justify-between h-14 border-1 border-b border-gray-300 border-solid sticky top-0 z-50"
>
<div
class=
"logo"
>
<img
...
...
This diff is collapsed.
Click to expand it.
tailwind.config.js
+
25
−
1
View file @
ade82207
...
...
@@ -2,7 +2,31 @@ module.exports = {
darkMode
:
"
class
"
,
content
:
[
"
./index.html
"
,
"
./src/**/*.{vue,js,ts,jsx,tsx}
"
],
theme
:
{
extend
:
{},
colors
:
{
white
:
"
#fff
"
,
black
:
"
#000
"
,
gray
:
{
50
:
"
#f9fafb
"
,
100
:
"
#f3f4f6
"
,
200
:
"
#e5e7eb
"
,
300
:
"
#d1d5db
"
,
400
:
"
#9ca3af
"
,
500
:
"
#6b7280
"
,
600
:
"
#4b5563
"
,
700
:
"
#374151
"
,
800
:
"
#1f2937
"
,
900
:
"
#111827
"
,
},
primary
:
{
light
:
"
#306EC1
"
,
medium
:
"
#004aad
"
,
dark
:
"
#003884
"
,
},
contrast
:
{
light
:
"
#653273
"
,
dark
:
"
#731050
"
,
},
},
},
plugins
:
[],
};
This diff is collapsed.
Click to expand it.
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