Add translations to vue files
This commit is contained in:
parent
791cbaa5ce
commit
598bae7b70
14 changed files with 178 additions and 29 deletions
21
resources/assets/pterodactyl/styles/components/buttons.css
Normal file
21
resources/assets/pterodactyl/styles/components/buttons.css
Normal file
|
@ -0,0 +1,21 @@
|
|||
.btn {
|
||||
@apply .rounded;
|
||||
|
||||
/**
|
||||
* Button Colors
|
||||
*/
|
||||
&.btn-blue {
|
||||
@apply .bg-blue .border-blue-dark .border .text-white;
|
||||
|
||||
&:hover {
|
||||
@apply .bg-blue-dark .border-blue-darker;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Button Sizes
|
||||
*/
|
||||
&.btn-jumbo {
|
||||
@apply .p-4 .w-full .uppercase .tracking-wide .text-sm;
|
||||
}
|
||||
}
|
Reference in a new issue