fix: fix centring of profile modal auto generated pfps #61

Merged
twig merged 1 commit from fix-modal-autogenerated-icons into main 2025-08-04 19:22:54 +00:00

View file

@ -1,9 +1,11 @@
<template> <template>
<div :style="`background-color: ${generateIrcColor(seed, 50)}`" <div :style="`background-color: ${generateIrcColor(seed, 50)}`"
class="default-icon"> class="default-icon">
<span class="default-icon-text"> <div class="default-icon-text-container">
{{ previewName }} <span class="default-icon-text">
</span> {{ previewName }}
</span>
</div>
</div> </div>
</template> </template>
@ -31,12 +33,17 @@ if (props.name.length > 3) {
</script> </script>
<style scoped> <style scoped>
.default-icon { .default-icon, .default-icon-text-container {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
} }
.default-icon-text-container {
height: 100%;
width: 100%;
}
.default-icon-text { .default-icon-text {
/* helps centre the icon, yes, this is NOT perfect */ /* helps centre the icon, yes, this is NOT perfect */
margin-top: -0.15em; margin-top: -0.15em;