mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-04-26 13:34:45 +00:00
Use unified rounded corners for all elements in the nav bar (#2000)
Nav bar:    Other icon buttons: 
This commit is contained in:
parent
443c23c58a
commit
37fcc26330
3 changed files with 3 additions and 3 deletions
|
@ -73,6 +73,6 @@ export default defineComponent({
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.icon-button {
|
.icon-button {
|
||||||
@apply relative flex items-center justify-center px-1 py-1 rounded-full bg-transparent hover-effect overflow-hidden disabled:opacity-50 disabled:cursor-not-allowed;
|
@apply relative flex items-center justify-center px-1 py-1 rounded-md bg-transparent hover-effect overflow-hidden disabled:opacity-50 disabled:cursor-not-allowed;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<div class="spinner-ring ring4" />
|
<div class="spinner-ring ring4" />
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="flex items-center justify-center h-full w-full font-bold bg-white bg-opacity-15 dark:bg-black dark:bg-opacity-10 rounded-full"
|
class="flex items-center justify-center h-full w-full font-bold bg-white bg-opacity-15 dark:bg-black dark:bg-opacity-10 rounded-md"
|
||||||
>
|
>
|
||||||
{{ activePipelines.length || 0 }}
|
{{ activePipelines.length || 0 }}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -87,7 +87,7 @@ export default defineComponent({
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.navbar-icon {
|
.navbar-icon {
|
||||||
@apply w-11 h-11 rounded-full p-2.5;
|
@apply w-11 h-11 rounded-md p-2.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-icon :deep(svg) {
|
.navbar-icon :deep(svg) {
|
||||||
|
|
Loading…
Reference in a new issue