image
export const LogOutButton = styled.button`
display: inline-block;
....
`;
export default styled(ThemedApp)`
....
button {
....
display: flex;
....
}
`;
Upon inspection, it is evident that the Logout button
(with class gBuhXv
) has been given a style of display: flex
instead of inline-block
, due to the higher priority of its parent element (ThemedApp
, .jCe...
)
The CSS rule causing this effect is p.column { text-align: right; }
, which can be overridden by
body p.column { text-align: left; }
since it is more specific in nature.
While this behavior is correct, it may not align with expectations. Is there a way to increase the priority of the Logout button's styling?