Docs Cleanup

This commit is contained in:
David Haz
2025-07-12 15:28:52 +03:00
parent 62cdbc2dba
commit 056d2c0330
21 changed files with 365 additions and 588 deletions

View File

@@ -32,3 +32,27 @@ export const decodeLabel = (label: string): string => {
.map(word => word.charAt(0).toUpperCase() + word.slice(1))
.join(' ');
};
/**
* Custom styles for PrimeVue Toast component
*/
export const customToastStyles = {
message: {
style: {
borderRadius: '10px',
border: '1px solid #142216',
backgroundColor: '#0b0b0b'
}
},
messageContent: {
style: {
alignItems: 'center'
}
},
messageIcon: {
style: {
display: 'none'
}
},
customToastCloseButton: { style: { right: '0', margin: '0', outline: 'none', border: 'none' } }
};