-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2572e3e
commit 4145337
Showing
5 changed files
with
67 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/* Tailwind CSSのクラスを使用してカスタムスタイルを追加します */ | ||
|
||
/* 背景色を白に設定 */ | ||
body { | ||
@apply bg-white text-black; | ||
} | ||
|
||
.swagger-ui .topbar { | ||
@apply bg-white; | ||
} | ||
|
||
.swagger-ui .info { | ||
@apply bg-white text-black; | ||
} | ||
|
||
.swagger-ui .opblock { | ||
@apply bg-white; | ||
} | ||
|
||
.swagger-ui .opblock .opblock-summary { | ||
@apply bg-white border-gray-300; | ||
} | ||
|
||
.swagger-ui .opblock .opblock-summary-method { | ||
@apply bg-gray-300 text-black; | ||
} | ||
|
||
.swagger-ui .opblock .opblock-summary-path { | ||
@apply text-black; | ||
} | ||
|
||
.swagger-ui .opblock .opblock-summary-description { | ||
@apply text-black; | ||
} | ||
|
||
.swagger-ui a { | ||
@apply text-blue-600; | ||
} | ||
|
||
.swagger-ui .opblock-get .opblock-summary-method { | ||
@apply bg-green-500; | ||
} | ||
|
||
.swagger-ui .opblock-post .opblock-summary-method { | ||
@apply bg-blue-500; | ||
} | ||
|
||
.swagger-ui .opblock-put .opblock-summary-method { | ||
@apply bg-yellow-500; | ||
} | ||
|
||
.swagger-ui .opblock-delete .opblock-summary-method { | ||
@apply bg-red-500; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters