@use 'sass:color'; @use '../../stylesheets/mixins' as *; @use '../../stylesheets/colors' as *; .Logout { margin: 20px; background: $todos-palette3; text-align: center; border-radius: 3px; color: #fff; img { width: 100px; height: auto; } h1 { font-size: 28px; } p { font-size: 18px; color: color.adjust($todos-palette3, $lightness: 25%); } ul { list-style: none; display: inline-block; padding: 0; margin: 10px 0 0; } ul li { float: left; font-size: 28px; line-height: 28px; a { color: #fff; } &:not(:last-child) { margin-right: 15px; } } } @include breakpoint(tablet) { .Logout { padding: 30px; } } @include breakpoint(desktop) { .Logout { padding: 40px; } }