HEX
Server: nginx/1.18.0
System: Linux test-ipsremont 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
User: ips (1000)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/quadcode.com/builds/glrt-468/0/quadcode/quadcode.com/src/components/footer/Social.svelte
<script lang="ts">
  let text = '';
</script>

<div class="social">
  <div class="social__items">
    <div class="social__item social__item_twitter">
      <a href="https://twitter.com/Quadcode_SaaS" target="_blank" aria-label="We are on the social network twitter"
        >{text}</a
      >
    </div>
    <div class="social__item social__item_facebook">
      <a
        href="https://www.facebook.com/Quadcode-108315268769590"
        target="_blank"
        aria-label="We are on the social network facebook">{text}</a
      >
    </div>
    <div class="social__item social__item_linkedin">
      <a
        href="https://www.linkedin.com/company/quadcode-saas/"
        target="_blank"
        aria-label="We are on the social network linkedin">{text}</a
      >
    </div>
  </div>
</div>

<style lang="scss">
  @import 'src/scss/media';

  .social {
    &__items {
      display: flex;
      align-items: center;
    }

    &__item {
      width: 60px;
      min-width: 60px;
      height: 60px;
      background-repeat: no-repeat;
      background-size: contain;
      margin-right: 20px;

      @include breakpoint-down('deskM') {
        width: 52px;
        min-width: 52px;
        height: 52px;
        margin-right: 24px;
      }

      a {
        width: 100%;
        height: 100%;
        display: block;
      }

      &:last-of-type {
        margin-right: 0;
      }

      &_twitter {
        background-image: url('../../assets/images/social/twitter.svg');
      }

      &_facebook {
        background-image: url('../../assets/images/social/facebook.svg');
      }

      &_linkedin {
        background-image: url('../../assets/images/social/linkedin.svg');
      }
    }
  }
</style>