Remove unused image picker styles

This commit is contained in:
Johannes Zellner
2025-03-19 01:09:51 +01:00
parent a58b2efaf9
commit c4026c8e78
-40
View File
@@ -125,43 +125,3 @@ onMounted(() => {
<Button @click="onSubmit()" :loading="busy" :disabled="busy">{{ $t('app.display.saveAction') }}</Button>
</div>
</template>
<style scoped>
.app-custom-icon {
position: relative;
cursor: pointer;
width: 64px;
height: 64px;
margin-bottom: 5px;
background-position: center;
background-size: 100% 100%;
background-repeat: no-repeat;
border: 1px solid gray;
border-radius: 3px;
}
.app-custom-icon > img {
display: block;
width: 100%;
height: 100%;
}
.app-custom-icon-edit-indicator {
position: absolute;
bottom: -4px;
right: -4px;
border-radius: 20px;
padding: 5px;
color: var(--pankow-text-color);
background-color: var(--pankow-input-background-color);
transition: all 250ms;
}
.app-custom-icon:hover > .app-custom-icon-edit-indicator {
color: white;
background: var(--pankow-color-primary);
transform: scale(1.2);
}
</style>